summaryrefslogtreecommitdiff
path: root/ureports
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2010-08-27 14:08:09 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2010-08-27 14:08:09 +0200
commitdcc2e1edbb76d7919a08c813bee52c255f7d95b9 (patch)
treea9dd57c534f85c29608765066a2fb978f2719e14 /ureports
parent9d8813d9f30302eed91325afa00fa0e204ce65a1 (diff)
downloadlogilab-common-dcc2e1edbb76d7919a08c813bee52c255f7d95b9.tar.gz
fix some pylint detected errors
Diffstat (limited to 'ureports')
-rw-r--r--ureports/nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ureports/nodes.py b/ureports/nodes.py
index 3631aaa..0492f66 100644
--- a/ureports/nodes.py
+++ b/ureports/nodes.py
@@ -116,7 +116,7 @@ class Image(BaseComponent):
* title : the image's optional title
"""
def __init__(self, filename, stream, title=None, **kwargs):
- super(Link, self).__init__(**kwargs)
+ super(Image, self).__init__(**kwargs)
assert filename
assert stream
self.filename = filename