[meld/VersionControlRework: 3/123] meld.vc: Remove dead plugins from list



commit 811771466627ba70dd812ba3031a9989e6931919
Author: Kai Willadsen <kai willadsen gmail com>
Date:   Sat Mar 21 14:03:22 2015 +1000

    meld.vc: Remove dead plugins from list

 meld/vc/__init__.py |    9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)
---
diff --git a/meld/vc/__init__.py b/meld/vc/__init__.py
index 1eaf3a1..1523dd8 100644
--- a/meld/vc/__init__.py
+++ b/meld/vc/__init__.py
@@ -28,8 +28,7 @@ from ._vc import DATA_NAME, DATA_STATE, DATA_REVISION, DATA_OPTIONS
 
 # FIXME: This is a horrible hack to help cx_Freeze pick up these plugins when
 # freezing the distributable package.
-from . import (
-    git, mercurial, bzr, fossil, monotone, darcs, svk, svn, svn_17, cvs)
+from . import git, mercurial, bzr, svn
 
 # Tuple with module name and vc.NAME field, ordered according to best-guess
 # as to which VC a user is likely to want by default in a multiple-VC situation
@@ -37,13 +36,7 @@ vc_names = (
     "git",
     "mercurial",
     "bzr",
-    "fossil",
-    "monotone",
-    "darcs",
-    "svk",
     "svn",
-    "svn_17",
-    "cvs",
 )
 
 _plugins = [importlib.import_module("." + vc, __package__) for vc in vc_names]


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]