VCS/__init__.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3013
fe886b7f8f40
child 3145
a9de05d4a22f
--- a/VCS/__init__.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/VCS/__init__.py	Fri Oct 18 23:00:41 2013 +0200
@@ -4,7 +4,8 @@
 #
 
 """
-Module implementing the general part of the interface to version control systems.
+Module implementing the general part of the interface to version control
+systems.
 
 The general part of the VCS interface defines classes to implement common
 dialogs. These are a dialog to enter command options, a dialog to display
@@ -34,12 +35,14 @@
         # that should not happen
         vc = None
     
-    vc = pluginManager.getPluginObject("version_control", vcs, maybeActive=True)
+    vc = pluginManager.getPluginObject("version_control", vcs,
+                                       maybeActive=True)
     if vc is None:
         # try alternative vcs interfaces assuming, that there is a common
         # indicator for the alternatives
         found = False
-        for indicator, vcsData in list(pluginManager.getVcsSystemIndicators().items()):
+        for indicator, vcsData in \
+                pluginManager.getVcsSystemIndicators().items():
             for vcsSystem, vcsSystemDisplay in vcsData:
                 if vcsSystem == vcs:
                     found = True

eric ide

mercurial