[remote rql source] fix super call
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 10 Apr 2012 18:14:16 +0200
changeset 8356 e6688dd9fb52
parent 8355 557295b5b68a
child 8357 8b16593abd85
[remote rql source] fix super call
server/sources/remoterql.py
--- a/server/sources/remoterql.py	Wed Apr 04 17:46:34 2012 +0200
+++ b/server/sources/remoterql.py	Tue Apr 10 18:14:16 2012 +0200
@@ -98,7 +98,7 @@
     _conn = None
 
     def __init__(self, repo, source_config, eid=None):
-        super(AbstractSource, self).__init__(repo, source_config, eid)
+        super(RemoteSource, self).__init__(repo, source_config, eid)
         self.update_config(None, self.check_conf_dict(eid, source_config,
                                                       fail_if_unknown=False))
         self._query_cache = TimedCache(1800)