Add a space to the output of the method log_error

Before this change:

 - ./tuskar/tools/config/check_uptodate.sh: L23

After this change:

 - ./tuskar/tools/config/check_uptodate.sh : L23

Benefit: I can double click the filename in my terminal and then the
         filename will be copied into the clipboard without the
         leading ':'.

Change-Id: I6a2ef2105d3779118328fb36bd11b435812c406d
This commit is contained in:
Christian Berendt
2014-07-30 15:11:24 +02:00
parent 3d78faaa95
commit 440b7ccc88

View File

@@ -113,7 +113,7 @@ class BashateRun(object):
def log_error(self, error, line, filename, filelineno):
print("%s: '%s'" % (error, line.rstrip('\n')))
print(" - %s: L%s" % (filename, filelineno))
print(" - %s : L%s" % (filename, filelineno))
def check_files(self, files, verbose):
in_multiline = False