hgext/graphlog.py
changeset 4583 11cf78983961
parent 4516 96d8a56d4ef9
child 4633 ff7253a0d1da
--- a/hgext/graphlog.py	Thu Jun 14 11:33:32 2007 +0200
+++ b/hgext/graphlog.py	Thu Jun 14 12:54:06 2007 +0200
@@ -147,7 +147,7 @@
     Print a revision history alongside a revision graph drawn with
     ASCII characters.
 
-    Nodes printed as a . character are parents of the working
+    Nodes printed as an @ character are parents of the working
     directory.
     """
 
@@ -199,10 +199,10 @@
         #     o | |            o | |
         fix_nodeline_tail = len(log_strings) <= 2 and not add_padding_line
 
-        # nodeline is the line containing the node character (. or o).
+        # nodeline is the line containing the node character (@ or o).
         nodeline = ["|", " "] * node_index
         if node in repo_parents:
-            node_ch = "."
+            node_ch = "@"
         else:
             node_ch = "o"
         nodeline.extend([node_ch, " "])