Skip to content
Snippets Groups Projects
Commit 7302c9e0 authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

hgrepo._findtags: use githandler property

parent 7971aa02
No related branches found
No related tags found
No related merge requests found
......@@ -38,8 +38,7 @@
def _findtags(self):
(tags, tagtypes) = super(hgrepo, self)._findtags()
git = GitHandler(self, self.ui)
for tag, rev in git.tags.iteritems():
for tag, rev in self.githandler.tags.iteritems():
tags[tag] = bin(rev)
tagtypes[tag] = 'git'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment