--- a/mercurial/commands.py Fri Apr 12 16:55:34 2013 -0400
+++ b/mercurial/commands.py Thu Apr 11 14:44:22 2013 +0200
@@ -5601,7 +5601,7 @@
# don't allow tagging the null rev
if (not opts.get('remove') and
scmutil.revsingle(repo, rev_).rev() == nullrev):
- raise util.Abort(_("null revision specified"))
+ raise util.Abort(_("cannot tag null revision"))
repo.tag(names, r, message, opts.get('local'), opts.get('user'), date)
finally:
--- a/tests/test-tag.t Fri Apr 12 16:55:34 2013 -0400
+++ b/tests/test-tag.t Thu Apr 11 14:44:22 2013 +0200
@@ -264,11 +264,11 @@
$ hg init empty
$ hg tag -R empty nullrev
- abort: null revision specified
+ abort: cannot tag null revision
[255]
$ hg tag -R empty -r 00000000000 -f nulltag
- abort: null revision specified
+ abort: cannot tag null revision
[255]
$ cd ..