# HG changeset patch # User Idan Kamara # Date 2012-01-20 21:05:14 # Node ID 0d2ac0299020ad2067a670e1573f97431884bf79 # Parent 12a1c9e92d66a6aa6cfde80a38b4872310ca33b3 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 @@ -4219,7 +4219,7 @@ def phase(ui, repo, *revs, **opts): 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