diff options
Diffstat (limited to 'test/Scripts/coff-dump.py')
-rwxr-xr-x | test/Scripts/coff-dump.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Scripts/coff-dump.py b/test/Scripts/coff-dump.py index a75cf6b..36ec539 100755 --- a/test/Scripts/coff-dump.py +++ b/test/Scripts/coff-dump.py @@ -365,10 +365,10 @@ def read_value(expr): raise RuntimeError("unexpected token %s" % repr(token)) - value = eval () + value = eval() try: - input.next () + input.next() except StopIteration: return value raise RuntimeError("unexpected input at end of expression") |