diff hgext/bookmarks.py @ 12146:4d12c42fe932 stable

bookmarks: break long line found by check-code
author Martin Geisler <mg@lazybytes.net>
date Thu, 02 Sep 2010 17:07:02 +0200
parents ebfc46929f3e
children e59156a1316f 741290486877
line wrap: on
line diff
--- 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)