repoapi.py
changeset 10236 ef3059a692cb
parent 10235 684215aca046
child 10354 635cfac73d28
--- a/repoapi.py	Tue Mar 03 14:57:34 2015 +0100
+++ b/repoapi.py	Fri Mar 13 14:10:40 2015 +0100
@@ -52,11 +52,7 @@
         # me may have been called with a dummy 'inmemory://' uri ...
         return _get_inmemory_repo(config, vreg)
 
-    if protocol.startswith('zmqpickle-'):
-        from cubicweb.zmqclient import ZMQRepositoryClient
-        return ZMQRepositoryClient(uri)
-    else:
-        raise ConnectionError('unknown protocol: `%s`' % protocol)
+    raise ConnectionError('unknown protocol: `%s`' % protocol)
 
 def connect(repo, login, **kwargs):
     """Take credential and return associated ClientConnection.