changeset 31670:adace35f931d

tags: use the 'tag' function from the 'tags' module in the 'tag' command There is No need to go through the 'repo' object method anymore.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Mon, 27 Mar 2017 16:00:34 +0200
parents a719f3315366
children d761ef24d6e1
files mercurial/commands.py
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/commands.py	Mon Mar 27 15:58:31 2017 +0200
+++ b/mercurial/commands.py	Mon Mar 27 16:00:34 2017 +0200
@@ -48,6 +48,7 @@
     server,
     sshserver,
     streamclone,
+    tags as tagsmod,
     templatekw,
     ui as uimod,
     util,
@@ -5172,8 +5173,8 @@
             scmutil.revsingle(repo, rev_).rev() == nullrev):
             raise error.Abort(_("cannot tag null revision"))
 
-        repo.tag(names, r, message, opts.get('local'), opts.get('user'), date,
-                 editor=editor)
+        tagsmod.tag(repo, names, r, message, opts.get('local'),
+                    opts.get('user'), date, editor=editor)
     finally:
         release(lock, wlock)