connectors/__init__.py
changeset 1785 0ff2a45dcefa
parent 1773 38fde37c3766
child 1881 091005ec69c4
--- a/connectors/__init__.py	Mon Aug 21 23:22:58 2017 +0300
+++ b/connectors/__init__.py	Tue Aug 22 12:45:06 2017 +0300
@@ -38,8 +38,8 @@
 connectors = {name:
               _GetLocalConnectorClassFactory(name)
               for name in listdir(_base_path)
-              if (path.isdir(path.join(_base_path, name))
-                  and not name.startswith("__"))}
+              if (path.isdir(path.join(_base_path, name)) and
+                  not name.startswith("__"))}
 
 
 def ConnectorFactory(uri, confnodesroot):