Mercurial > hg-stable
changeset 25874:3e84f40232c7 stable
repair: fix typo in warning message
author | Wagner Bruna <wbruna@yahoo.com> |
---|---|
date | Sun, 26 Jul 2015 09:28:52 -0300 |
parents | 5d040020641d |
children | 511e1949d557 |
files | mercurial/repair.py tests/test-fncache.t |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 ..