hgext/graphlog.py
changeset 4633 ff7253a0d1da
parent 4583 11cf78983961
child 4730 eadfaa9ec487
--- a/hgext/graphlog.py
+++ b/hgext/graphlog.py
@@ -185,10 +185,9 @@ def graphlog(ui, repo, *args, **opts):
         #     |  / /         |   | |  # <--- padding line
         #     o | |          |  / /
         #                    o | |
-        add_padding_line = \
-            len(log_strings) > 2 and \
-            n_columns_diff == -1 and \
-            [x for (x, y) in edges if x + 1 < y]
+        add_padding_line = (len(log_strings) > 2 and
+                            n_columns_diff == -1 and
+                            [x for (x, y) in edges if x + 1 < y])
 
         # fix_nodeline_tail says whether to rewrite
         #