repair: fix typo in warning message stable
authorWagner Bruna <wbruna@yahoo.com>
Sun, 26 Jul 2015 09:28:52 -0300
branchstable
changeset 25874 3e84f40232c7
parent 25873 5d040020641d
child 25875 511e1949d557
repair: fix typo in warning message
mercurial/repair.py
tests/test-fncache.t
--- a/mercurial/repair.py	Sun Jul 26 18:05:10 2015 +0800
+++ b/mercurial/repair.py	Sun Jul 26 09:28:52 2015 -0300
@@ -237,7 +237,7 @@
 
     if 'fncache' not in repo.requirements:
         ui.warn(_('(not rebuilding fncache because repository does not '
-                  'support fncache\n'))
+                  'support fncache)\n'))
         return
 
     lock = repo.lock()
--- a/tests/test-fncache.t	Sun Jul 26 18:05:10 2015 +0800
+++ b/tests/test-fncache.t	Sun Jul 26 09:28:52 2015 -0300
@@ -308,7 +308,7 @@
   $ hg --config format.usefncache=false init nofncache
   $ cd nofncache
   $ hg debugrebuildfncache
-  (not rebuilding fncache because repository does not support fncache
+  (not rebuilding fncache because repository does not support fncache)
 
   $ cd ..