changeset 29971:e65d33182fd4

bundle: use single quotes in use warning
author timeless <timeless@mozdev.org>
date Tue, 20 Sep 2016 23:46:15 +0000
parents 5ad164698626
children 392edab93b8a
files mercurial/commands.py tests/test-bundle-type.t
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 ..