Patch #416220: Fix misplaced paren.

This commit is contained in:
Martin v. Löwis 2001-06-07 05:49:05 +00:00
parent 1d88c59f75
commit 22adac50cb
2 changed files with 2 additions and 4 deletions

View File

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

View File

@ -2,9 +2,7 @@
should be based on this code. """
import handler
from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
from _exceptions import *
# ===== XMLREADER =====