diff mercurial/bundlerepo.py @ 9198:061eeb602354

coding style: use a space after comma I left a cases like 'lambda x,y:' alone -- the lack of a space does not bother me as much when the variables are single letters.
author Martin Geisler <mg@lazybytes.net>
date Wed, 22 Jul 2009 23:12:54 +0200
parents b87a50b7125c
children 1ad02c04356c
line wrap: on
line diff
--- a/mercurial/bundlerepo.py	Wed Jul 22 23:08:32 2009 +0200
+++ b/mercurial/bundlerepo.py	Wed Jul 22 23:12:54 2009 +0200
@@ -160,7 +160,7 @@
             localrepo.localrepository.__init__(self, ui, path)
         except error.RepoError:
             self._tempparent = tempfile.mkdtemp()
-            localrepo.instance(ui,self._tempparent,1)
+            localrepo.instance(ui, self._tempparent, 1)
             localrepo.localrepository.__init__(self, ui, self._tempparent)
 
         if path: