# HG changeset patch # User Matt Mackall # Date 1282257226 18000 # Node ID ce066f8aa0b23ba638ad918344bcd648ad52ab9f # Parent 4b1197f15313e08c9300c012aadbe2ac9eb04c78 bookmarks: fix long line diff -r 4b1197f15313 -r ce066f8aa0b2 hgext/bookmarks.py --- a/hgext/bookmarks.py Thu Aug 19 17:29:13 2010 -0500 +++ b/hgext/bookmarks.py Thu Aug 19 17:33:46 2010 -0500 @@ -446,7 +446,8 @@ ui.status(_("deleting remote bookmark %s\n") % b) new = '' # delete else: - ui.warn(_('bookmark %s does not exist on the local or remote repository!\n') % b) + ui.warn(_('bookmark %s does not exist on the local' + ' or remote repository!\n') % b) return 2 old = rb.get(b, '') r = other.pushkey('bookmarks', b, old, new)