changeset 12002:ce066f8aa0b2

bookmarks: fix long line
author Matt Mackall <mpm@selenic.com>
date Thu, 19 Aug 2010 17:33:46 -0500
parents 4b1197f15313
children a092b91a27c4
files hgext/bookmarks.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)