aboutsummaryrefslogtreecommitdiffstats
path: root/test/Scripts/coff-dump.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Scripts/coff-dump.py')
-rwxr-xr-xtest/Scripts/coff-dump.py4
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")