# HG changeset patch # User Martin Geisler # Date 1234911536 -3600 # Node ID e8d62d6133c297eb33f787e66ec18d88f98d96cf # Parent 0896c008cb525e59c791b47838d1c9491dfec5b7 bookmarks: escape literal backslashes in docstring diff -r 0896c008cb52 -r e8d62d6133c2 hgext/bookmarks.py --- a/hgext/bookmarks.py Tue Feb 17 23:13:48 2009 +0800 +++ b/hgext/bookmarks.py Tue Feb 17 23:58:56 2009 +0100 @@ -33,7 +33,7 @@ def parse(repo): '''Parse .hg/bookmarks file and return a dictionary - Bookmarks are stored as {HASH}\s{NAME}\n (localtags format) values + Bookmarks are stored as {HASH}\\s{NAME}\\n (localtags format) values in the .hg/bookmarks file. They are read by the parse() method and returned as a dictionary with name => hash values.