[Checkins] SVN: zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py Added missing return.

Jim Fulton jim at zope.com
Wed Aug 9 16:49:39 EDT 2006


Log message for revision 69384:
  Added missing return.
  

Changed:
  U   zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py

-=-
Modified: zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py
===================================================================
--- zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py	2006-08-09 20:42:27 UTC (rev 69383)
+++ zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py	2006-08-09 20:49:39 UTC (rev 69384)
@@ -14,7 +14,7 @@
     def install(self):
         dest = self.options['dest']
         if os.path.exists(dest):
-            return # already there
+            return dest # already there
 
         url = self.options['url']
         f = urllib2.urlopen(url)
@@ -51,6 +51,7 @@
         finally:
             shutil.rmtree(tmp)
 
+        return dest
 
 def tar(stream, path, mode='r|'):
     import tarfile



More information about the Checkins mailing list