diff buttercup/source.py @ 44:693f209fdbaa

notes to self
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 24 Mar 2013 00:47:55 -0700
parents 4ea66cb5485d
children 048e391423a1
line wrap: on
line diff
--- a/buttercup/source.py	Sat Mar 23 04:43:46 2013 -0700
+++ b/buttercup/source.py	Sun Mar 24 00:47:55 2013 -0700
@@ -28,7 +28,7 @@
     def __call__(self):
         """convenience wrapper to update"""
         self.update()
-        
+
 
 class HgSource(Source):
     """mercurial source"""
@@ -48,7 +48,9 @@
             if not os.path.exists(self.srcdir):
                 os.makedirs(self.srcdir)
             call(['hg', 'clone', self.uri], cwd=self.srcdir)
-            # TODO: add a more intelligent .hg/hgrc
+
+            # add a more intelligent .hg/hgrc
+            # TODO
 
 
 class GitSource(Source):