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

Patch #416220: Fix misplaced paren.

parent 1d88c59f
......@@ -613,7 +613,7 @@ if __name__ == '__main__':
print args[1]
return
self.prompt = line + "% "
elif len(self.prompt > 2):
elif len(self.prompt) > 2:
line = self.prompt[-2:]
else:
print "No statistics object is current -- cannot reload."
......
......@@ -2,9 +2,7 @@
should be based on this code. """
import handler
from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
from _exceptions import *
# ===== 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