diff -r 675ca845c2f8 -r c21b54f7f7b8 mercurial/manifest.py --- a/mercurial/manifest.py Thu Dec 15 18:04:39 2005 +0100 +++ b/mercurial/manifest.py Wed Feb 01 19:18:15 2006 +0100 @@ -108,6 +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) text = ["%s\000%s%s\n" % (f, hex(map[f]), flags[f] and "x" or '') for f in files]