diff hgext/graphlog.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 efe990445b33
children 19a4b8fd5c48
line wrap: on
line diff
--- a/hgext/graphlog.py	Wed Jul 22 23:08:32 2009 +0200
+++ b/hgext/graphlog.py	Wed Jul 22 23:12:54 2009 +0200
@@ -95,7 +95,7 @@
         else:
             nodeline[2 * end] = "+"
             if start > end:
-                (start, end) = (end,start)
+                (start, end) = (end, start)
             for i in range(2 * start + 1, 2 * end):
                 if nodeline[i] != "+":
                     nodeline[i] = "-"