# HG changeset patch # User Martin Geisler # Date 2010-09-02 15:07:02 # Node ID 4d12c42fe93204dceff07b94cc90791442bb85f1 # Parent c407b4ca666e28ddf2f9e4c6f3dc7fce6631144d bookmarks: break long line found by check-code diff --git a/hgext/bookmarks.py b/hgext/bookmarks.py --- a/hgext/bookmarks.py +++ b/hgext/bookmarks.py @@ -451,7 +451,8 @@ def push(oldpush, ui, repo, dest=None, * 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)