Mercurial > public > mercurial-scm > hg-stable
diff hgext/record.py @ 9461:cec9fb4e07a1
record: remove superfluous space
author | timeless@mozdev.org |
---|---|
date | Sun, 13 Sep 2009 03:04:40 +0300 |
parents | 784899697571 |
children | fc493cb90bb1 |
line wrap: on
line diff
--- a/hgext/record.py Thu Sep 17 22:30:45 2009 -0400 +++ b/hgext/record.py Sun Sep 13 03:04:40 2009 +0300 @@ -291,7 +291,7 @@ _('Record &all changes to all remaining files'), _('&Quit, recording no changes'), _('&?')) - r = ui.promptchoice("%s %s " % (query, resps), choices) + r = ui.promptchoice("%s %s" % (query, resps), choices) if r == 7: # ? doc = gettext(record.__doc__) c = doc.find(_('y - record this change'))