# HG changeset patch # User Martin Geisler # Date 1283440022 -7200 # Node ID 4d12c42fe93204dceff07b94cc90791442bb85f1 # Parent c407b4ca666e28ddf2f9e4c6f3dc7fce6631144d bookmarks: break long line found by check-code diff -r c407b4ca666e -r 4d12c42fe932 hgext/bookmarks.py --- a/hgext/bookmarks.py Thu Sep 02 12:53:28 2010 +0200 +++ b/hgext/bookmarks.py Thu Sep 02 17:07:02 2010 +0200 @@ -451,7 +451,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)