# HG changeset patch # User Thomas Arendsen Hein # Date 1138541592 -3600 # Node ID b11507d6d16d3c4f7b3183902564b9b00f1c79bf # Parent b2df93c56ac47c24c46e193c5afdc5a6f687c8a6 Added missing quote in warning text. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2092,7 +2092,7 @@ def tag(ui, repo, name, rev_=None, **opt raise util.Abort(_("the name 'tip' is reserved")) if rev_ is not None: ui.warn(_("use of 'hg tag NAME [REV]' is deprecated, " - "please use 'hg tag [-r REV] NAME instead\n")) + "please use 'hg tag [-r REV] NAME' instead\n")) if opts['rev']: raise util.Abort(_("use only one form to specify the revision")) if opts['rev']: