diff hgext/mq.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 b67adc2daa15
children 39426716a07e 74e717a21779
line wrap: on
line diff
--- a/hgext/mq.py	Wed Jul 22 23:08:32 2009 +0200
+++ b/hgext/mq.py	Wed Jul 22 23:12:54 2009 +0200
@@ -1850,7 +1850,7 @@
                      summary=opts.get('summary'))
 
 def setupheaderopts(ui, opts):
-    def do(opt,val):
+    def do(opt, val):
         if not opts[opt] and opts['current' + opt]:
             opts[opt] = val
     do('user', ui.username())