# HG changeset patch # User Martin Geisler # Date 2009-02-17 22:58:56 # Node ID e8d62d6133c297eb33f787e66ec18d88f98d96cf # Parent 0896c008cb525e59c791b47838d1c9491dfec5b7 bookmarks: escape literal backslashes in docstring diff --git a/hgext/bookmarks.py b/hgext/bookmarks.py --- a/hgext/bookmarks.py +++ b/hgext/bookmarks.py @@ -33,7 +33,7 @@ import os 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.