--- 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':
--- 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 ..