Commit fed2a50b authored by Martin v. Löwis's avatar Martin v. Löwis

Patch #416220: Fix misplaced paren.

parent 01c15072
...@@ -613,7 +613,7 @@ if __name__ == '__main__': ...@@ -613,7 +613,7 @@ if __name__ == '__main__':
print args[1] print args[1]
return return
self.prompt = line + "% " self.prompt = line + "% "
elif len(self.prompt > 2): elif len(self.prompt) > 2:
line = self.prompt[-2:] line = self.prompt[-2:]
else: else:
print "No statistics object is current -- cannot reload." print "No statistics object is current -- cannot reload."
......
...@@ -2,9 +2,7 @@ ...@@ -2,9 +2,7 @@
should be based on this code. """ should be based on this code. """
import handler import handler
from _exceptions import *
from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
# ===== XMLREADER ===== # ===== XMLREADER =====
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment