Bug 1374256

Summary: typo in stdout and logfile
Product: [Fedora] Fedora Reporter: Michal Kolar <mkolar>
Component: beakerlibAssignee: Dalibor Pospíšil <dapospis>
Status: CLOSED CURRENTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: 24CC: azelinka, dapospis, jprokes, mkyral, muller
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Linux   
Whiteboard:
Fixed In Version: beakerlib-1.13-1 Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2017-02-16 08:48:10 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Michal Kolar 2016-09-08 10:52:00 UTC
Description of problem:
This is a very low priority nitpick. Log of beaker test contain two typos: Duplicit character ':' aflter words 'Installed' and 'Distro'.

Version-Release number of selected component (if applicable):
beakerlib-1.11-2.fc24

How reproducible:
Always

Steps to Reproduce:
1. $make run

Actual results:
...

:: [   LOG    ] :: Installed:    : make-4.1-5.fc24.x86_64 

...

:: [   LOG    ] :: Distro:       : Fedora release 24 (Twenty Four)

...

Expected results:
...

:: [   LOG    ] :: Installed     : make-4.1-5.fc24.x86_64 

...

:: [   LOG    ] :: Distro        : Fedora release 24 (Twenty Four)

...



Additional info:
diff --git a/src/python/journalling.py b/src/python/journalling.py
index 324a3ad..3f41941 100755
--- a/src/python/journalling.py
+++ b/src/python/journalling.py
@@ -231,9 +231,9 @@ class Journal(object):
       elif node.nodeName == "testname":
         Journal.printLog("Test name     : %s" % Journal.__childNodeValue(node, 0))
       elif node.nodeName == "pkgdetails":
-        Journal.printLog("Installed:    : %s" % Journal.__childNodeValue(node, 0))
+        Journal.printLog("Installed     : %s" % Journal.__childNodeValue(node, 0))
       elif node.nodeName == "release":
-        Journal.printLog("Distro:       : %s" % Journal.__childNodeValue(node, 0))
+        Journal.printLog("Distro        : %s" % Journal.__childNodeValue(node, 0))
       elif node.nodeName == "starttime":
         Journal.printLog("Test started  : %s" % Journal.__childNodeValue(node, 0))
       elif node.nodeName == "endtime":