Fix Formatting.

llvm-svn: 116038
This commit is contained in:
Michael J. Spencer 2010-10-08 03:17:21 +00:00
parent 8eb636e5de
commit 00ee155b25
1 changed files with 2 additions and 2 deletions

View File

@ -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")