Mercurial > hg
changeset 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 | c407b4ca666e |
children | e59156a1316f d598d24a7e67 |
files | hgext/bookmarks.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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)