From fc4e5408baff6a0680ab4cb11a0e6ad420059b9c Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 6 Sep 2013 20:39:26 -0600 Subject: [PATCH] Try to make it clearer that the first output of sith.py run is just the input --- sith.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sith.py b/sith.py index 98b29bea..c5fd9019 100755 --- a/sith.py +++ b/sith.py @@ -119,6 +119,7 @@ class TestCase(object): self.script = jedi.Script(f.read(), self.line, self.column, self.path) self.completions = getattr(self.script, self.operation)() if print_result: + print("{path}: Line {line} column {column}".format(**self.__dict__)) self.show_location(self.line, self.column) self.show_operation() except jedi.NotFoundError: