mercurial/localrepo.py
changeset 4216 6c0be67c2b27
parent 4215 e29f2db5ab18
child 4217 3be4785f8994
equal deleted inserted replaced
4215:e29f2db5ab18 4216:6c0be67c2b27
   259         '''return a mapping of tag to node'''
   259         '''return a mapping of tag to node'''
   260         if self.tagscache:
   260         if self.tagscache:
   261             return self.tagscache
   261             return self.tagscache
   262 
   262 
   263         globaltags = {}
   263         globaltags = {}
   264         globalover = {}
       
   265 
   264 
   266         def readtags(lines, fn):
   265         def readtags(lines, fn):
   267             filetags = {}
   266             filetags = {}
   268             fileover = {}
       
   269             count = 0
   267             count = 0
   270 
   268 
   271             def warn(msg):
   269             def warn(msg):
   272                 self.ui.warn(_("%s, line %s: %s\n") % (fn, count, msg))
   270                 self.ui.warn(_("%s, line %s: %s\n") % (fn, count, msg))
   273 
   271