diff --git a/hggit/hgrepo.py b/hggit/hgrepo.py index 1f367cf5e68851b113079f53371d905fa049b9ed_aGdnaXQvaGdyZXBvLnB5..5d45e0edfa3fe15f2892c77ba8a727550eca0b82_aGdnaXQvaGdyZXBvLnB5 100644 --- a/hggit/hgrepo.py +++ b/hggit/hgrepo.py @@ -45,5 +45,7 @@ (tags, tagtypes) = super(hgrepo, self)._findtags() for tag, rev in self.githandler.tags.iteritems(): + if isinstance(tag, unicode): + tag = tag.encode('utf-8') tags[tag] = bin(rev) tagtypes[tag] = 'git' @@ -48,6 +50,10 @@ tags[tag] = bin(rev) tagtypes[tag] = 'git' - + for tag, rev in self.githandler.remote_refs.iteritems(): + if isinstance(tag, unicode): + tag = tag.encode('utf-8') + tags[tag] = rev + tagtypes[tag] = 'git-remote' tags.update(self.githandler.remote_refs) return (tags, tagtypes)