Submitter | timeless |
---|---|
Date | Sept. 21, 2016, 12:19 a.m. |
Message ID | <3f18ad2b5443cad55dd5.1474417190@gcc2-power8.osuosl.org> |
Download | mbox | patch |
Permalink | /patch/16714/ |
State | Accepted |
Headers | show |
Comments
Patch
diff -r 912436c3e806 -r 3f18ad2b5443 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,7 +1383,7 @@ repo, bundletype, strict=False) except error.UnsupportedBundleSpecification as e: raise error.Abort(str(e), - hint=_('see "hg help bundle" for supported ' + hint=_("see 'hg help bundle' for supported " 'values for --type')) # Packed bundles are a pseudo bundle format for now. diff -r 912436c3e806 -r 3f18ad2b5443 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 ..