changeset 1651:cf40d2a30fef

Fix comment syntax
author Matt Mackall <mpm@selenic.com>
date Sun, 29 Jan 2006 12:23:52 +1300
parents f2ebd5251e88
children f910437af806
files mercurial/manifest.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/manifest.py	Sun Jan 29 00:18:52 2006 +0100
+++ b/mercurial/manifest.py	Sun Jan 29 12:23:52 2006 +1300
@@ -108,8 +108,8 @@
             files = map.keys()
             files.sort()
 
-            % if this is changed to support newlines in filenames,
-            % be sure to check the templates/ dir again (especially *-raw.tmpl)
+            # if this is changed to support newlines in filenames,
+            # be sure to check the templates/ dir again (especially *-raw.tmpl)
             text = ["%s\000%s%s\n" %
                             (f, hex(map[f]), flags[f] and "x" or '')
                             for f in files]