mercurial/commands.py
changeset 22009 0bbe8ef901d1
parent 22008 b02ab548ab5c
child 22010 41e969cb9468
--- a/mercurial/commands.py	Sat Aug 02 21:46:27 2014 +0900
+++ b/mercurial/commands.py	Sat Aug 02 21:46:27 2014 +0900
@@ -5799,7 +5799,11 @@
         if date:
             date = util.parsedate(date)
 
-        editor = cmdutil.getcommiteditor(**opts)
+        if opts.get('remove'):
+            editform = 'tag.remove'
+        else:
+            editform = 'tag.add'
+        editor = cmdutil.getcommiteditor(editform=editform, **opts)
 
         # don't allow tagging the null rev
         if (not opts.get('remove') and