Code review comment for lp:~statik/config-manager/specific-revisions

Revision history for this message
Elliot Murphy (statik) wrote :

=== modified file 'lib/config_manager/__init__.py'
--- lib/config_manager/__init__.py 2009-06-20 03:38:27 +0000
+++ lib/config_manager/__init__.py 2009-06-20 16:02:24 +0000
@@ -29,7 +29,7 @@
 import config_manager.implementations
 #TODO import implementations dynamically.
 import config_manager.implementations.fake_vcs
-import config_manager.implementations.arch_vcs
+#import config_manager.implementations.arch_vcs
 fake_updates = []

 class UnsupportedScheme(KeyError):
@@ -135,6 +135,7 @@
         os.system("svn checkout %s %s" % (url, os.path.normpath(os.path.join(path, self.path))))

     def _build_pybaz_name(self, path):
+ return False
         import pybaz
         try:
             # try as registered name
@@ -146,6 +147,7 @@
             return False

     def _build_pybaz_url(self, path):
+ return None
         import pybaz
         try:
             lastslash = self.url.rfind('/')
@@ -265,6 +267,7 @@
                 raise ValueError("unknown url type '%s'" % self.url)

     def _update_pybaz(self, path):
+ return False
         import pybaz
         try:
             tree = pybaz.WorkingTree(os.path.join(path, self.path))

« Back to merge proposal