From 370e539a7e9704f3c3214583bb0d716369530f46 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 8 Feb 2020 21:37:23 +0000 Subject: [PATCH] Remove additional prefix which seems incorrect --- sith.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sith.py b/sith.py index 6bf39091..34823f59 100755 --- a/sith.py +++ b/sith.py @@ -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())