summaryrefslogtreecommitdiff
path: root/Demo/xml/elem_count.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/xml/elem_count.py')
-rw-r--r--Demo/xml/elem_count.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/xml/elem_count.py b/Demo/xml/elem_count.py
index 43161999a1..7b53189c7c 100644
--- a/Demo/xml/elem_count.py
+++ b/Demo/xml/elem_count.py
@@ -30,7 +30,7 @@ class FancyCounter(handler.ContentHandler):
for pair in self._attr_types.items():
print "%20s %d" % pair
-
+
parser = make_parser()
parser.setContentHandler(FancyCounter())
parser.parse(sys.argv[1])