# HG changeset patch # User Martin Geisler # Date 2009-07-17 18:52:21 # Node ID a458b9bf4f3a27d8d14dbcbf3f587d3958857baf # Parent 7bfce9c948aa2fc97defbf0f92faaa8edc7ca472 hg: better wrapping of string literal diff --git a/mercurial/hg.py b/mercurial/hg.py --- a/mercurial/hg.py +++ b/mercurial/hg.py @@ -277,9 +277,9 @@ def clone(ui, source, dest=None, pull=Fa 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():