VCS/__init__.py

changeset 3013
fe886b7f8f40
parent 2302
f29e9405c851
child 3057
10516539f238
child 3160
209a07d7e401
--- a/VCS/__init__.py	Sun Oct 13 14:56:56 2013 +0200
+++ b/VCS/__init__.py	Sun Oct 13 16:11:46 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
@@ -32,12 +33,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