summaryrefslogtreecommitdiff
path: root/ureports
diff options
context:
space:
mode:
authorpierre-yves david <pierre-yves.david@insa-lyon.fr>2008-10-19 22:57:19 +0200
committerpierre-yves david <pierre-yves.david@insa-lyon.fr>2008-10-19 22:57:19 +0200
commit66846723859a232413aa34e942ece5bb0fcbfa6f (patch)
treecd88683b6cb05232f775df300e160e4886da6ec2 /ureports
parentd79d1b8ceebe87d76c4226167b06f3d4dee90656 (diff)
downloadlogilab-common-66846723859a232413aa34e942ece5bb0fcbfa6f.tar.gz
Fix call of __init__ with super in html reporter
Diffstat (limited to 'ureports')
-rw-r--r--ureports/html_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ureports/html_writer.py b/ureports/html_writer.py
index 460ec05..3169727 100644
--- a/ureports/html_writer.py
+++ b/ureports/html_writer.py
@@ -23,7 +23,7 @@ class HTMLWriter(BaseWriter):
"""format layouts as HTML"""
def __init__(self, snipet=None):
- super(HTMLWriter, self).__init__(self)
+ super(HTMLWriter, self).__init__()
self.snipet = snipet
def handle_attrs(self, layout):