[PATCH] commands: drop exclamation mark in abort message

Idan Kamara idankk86 at gmail.com
Fri Jan 20 15:07:16 CST 2012


# HG changeset patch
# User Idan Kamara <idankk86 at gmail.com>
# Date 1327093514 -7200
# Branch stable
# Node ID 2ece8b3b41010df393e63ea07a7006f4445ca1c7
# Parent  7ed056f1e97db94338c7ef1c49fd5dd49870f3e3
commands: drop exclamation mark in abort message

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -4214,7 +4214,7 @@
     revs = list(revs)
     revs.extend(opts['rev'])
     if not revs:
-        raise util.Abort(_('no revisions specified!'))
+        raise util.Abort(_('no revisions specified'))
 
     lock = None
     ret = 0


More information about the Mercurial-devel mailing list