[Treepkg-commits] r407 - trunk/treepkg

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Aug 9 16:00:00 CEST 2010


Author: aheinecke
Date: 2010-08-09 16:00:00 +0200 (Mon, 09 Aug 2010)
New Revision: 407

Modified:
   trunk/treepkg/git.py
Log:
Cleanup misplaced whitespace


Modified: trunk/treepkg/git.py
===================================================================
--- trunk/treepkg/git.py	2010-08-09 13:56:31 UTC (rev 406)
+++ trunk/treepkg/git.py	2010-08-09 14:00:00 UTC (rev 407)
@@ -23,9 +23,9 @@
 
 def checkout(url, localdir, branch=None):
     """Clones the repository at url into the localdir"""
-    run.call(cmdexpand("git clone $url $localdir", **locals()))        
+    run.call(cmdexpand("git clone $url $localdir", **locals()))
     if branch:
-        run.call(cmdexpand("git checkout --track -b local $branch", 
+        run.call(cmdexpand("git checkout --track -b local $branch",
                             **locals()), cwd=localdir)
     else:
         run.call(cmdexpand("git checkout --track -b local master"),
@@ -79,10 +79,8 @@
         return last_changed_revision(localdir)
 
     def check_working_copy(self, localdir):
-        """
-	FIXME STUB: Not implemented for git
-        """
-        return None  
+        """FIXME STUB: Not implemented for git"""
+        return None
 
 class GitWorkingCopy(object):
 



More information about the Treepkg-commits mailing list