Remove additional prefix which seems incorrect

This commit is contained in:
Peter Law
2020-02-08 21:37:23 +00:00
committed by Dave Halter
parent fd1f9f22e9
commit 370e539a7e

View File

@@ -153,7 +153,7 @@ class TestCase(object):
prefix = ' |'
for i, line in enumerate(self.script._code.split('\n')[lower:lineno]):
print(prefix, lower + i + 1, line)
print(prefix, ' ', ' ' * (column + len(str(lineno))), '^')
print(prefix, ' ' * (column + len(str(lineno))), '^')
def show_operation(self):
print("%s:\n" % self.operation.capitalize())