Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 6057:218d5b9aa466
Remove trailing ! from two error messages as this was confusing.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sat, 09 Feb 2008 19:13:57 +0100 |
parents | cfb4a51da7d5 |
children | ea33f695304a |
line wrap: on
line diff
--- a/mercurial/commands.py Sat Feb 09 18:58:31 2008 +0100 +++ b/mercurial/commands.py Sat Feb 09 19:13:57 2008 +0100 @@ -963,7 +963,7 @@ try: regexp = re.compile(pattern, reflags) except Exception, inst: - ui.warn(_("grep: invalid match pattern: %s!\n") % inst) + ui.warn(_("grep: invalid match pattern: %s\n") % inst) return None sep, eol = ':', '\n' if opts['print0']: