[meld] meld.vc: Fix initialisation of null VC



commit 211ce2d304ae2176f5c8cc983043a9539115135b
Author: Kai Willadsen <kai willadsen gmail com>
Date:   Sun Nov 10 07:34:09 2013 +1000

    meld.vc: Fix initialisation of null VC

 meld/vc/__init__.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meld/vc/__init__.py b/meld/vc/__init__.py
index 134a0a9..d2a66d8 100644
--- a/meld/vc/__init__.py
+++ b/meld/vc/__init__.py
@@ -90,6 +90,6 @@ def get_vcs(location):
 
     if not vcs:
         # No plugin recognized that location, fallback to _null
-        return [_null]
+        return [_null.Vc]
 
     return sorted(vcs, key=lambda v: vc_sort_order.index(v.NAME))


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