Mercurial > hg-stable
changeset 9171:a458b9bf4f3a
hg: better wrapping of string literal
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Fri, 17 Jul 2009 20:52:21 +0200 |
parents | 7bfce9c948aa |
children | bc1de09090bc |
files | mercurial/hg.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hg.py Sat Jul 18 12:41:49 2009 -0500 +++ b/mercurial/hg.py Fri Jul 17 20:52:21 2009 +0200 @@ -277,9 +277,9 @@ revs = None if rev: if 'lookup' not in src_repo.capabilities: - raise util.Abort(_("src repository does not support revision " - "lookup and so doesn't support clone by " - "revision")) + raise util.Abort(_("src repository does not support " + "revision lookup and so doesn't " + "support clone by revision")) revs = [src_repo.lookup(r) for r in rev] checkout = revs[0] if dest_repo.local():