Use the configuration as dictionary, and add stub for auto-debuild system
[mass-build.git] / vcs.py
diff --git a/vcs.py b/vcs.py
index 8acb571aa161a4cb4df82d2a237d2cd77deb0521..a810d35291907ab5464ef1e603640cb2778acf38 100644 (file)
--- a/vcs.py
+++ b/vcs.py
@@ -14,7 +14,6 @@ class Git:
                        print self._cur_line+(" "*30)+"\r",
        
        def update(self):
-               print "Updating",self.folder
                isBranch = (self.commit.startswith('origin/'))
                if isBranch:
                        branchname = self.commit[len('origin/'):]
@@ -58,7 +57,6 @@ class SVN:
                self.svnPath = svnPath
        
        def update(self):
-               print "Updating",self.folder
                if os.path.exists(self.folder):
                        os.chdir(self.folder) # go into repository
                        subprocess.check_call(['svn', 'switch', self.svnPath]) # and update to the URL we got