# HG changeset patch # User timeless # Date 1474415175 0 # Node ID e65d33182fd403f61c3ac8ff71183640fbffcc07 # Parent 5ad164698626db92686ba001c2fb93850f5ef4de bundle: use single quotes in use warning diff -r 5ad164698626 -r e65d33182fd4 mercurial/commands.py --- a/mercurial/commands.py Tue Sep 20 23:45:25 2016 +0000 +++ b/mercurial/commands.py Tue Sep 20 23:46:15 2016 +0000 @@ -1383,8 +1383,8 @@ repo, bundletype, strict=False) except error.UnsupportedBundleSpecification as e: raise error.Abort(str(e), - hint=_('see "hg help bundle" for supported ' - 'values for --type')) + hint=_("see 'hg help bundle' for supported " + "values for --type")) # Packed bundles are a pseudo bundle format for now. if cgversion == 's1': diff -r 5ad164698626 -r e65d33182fd4 tests/test-bundle-type.t --- a/tests/test-bundle-type.t Tue Sep 20 23:45:25 2016 +0000 +++ b/tests/test-bundle-type.t Tue Sep 20 23:46:15 2016 +0000 @@ -123,6 +123,6 @@ $ cd t1 $ hg bundle -a -t garbage ../bgarbage abort: garbage is not a recognized bundle specification - (see "hg help bundle" for supported values for --type) + (see 'hg help bundle' for supported values for --type) [255] $ cd ..