bundle: use single quotes in use warning
authortimeless <timeless@mozdev.org>
Tue, 20 Sep 2016 23:46:15 +0000
changeset 29971 e65d33182fd4
parent 29970 5ad164698626
child 29972 392edab93b8a
bundle: use single quotes in use warning
mercurial/commands.py
tests/test-bundle-type.t
--- 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 ..