mercurial/hg.py
changeset 454 58d57594b802
parent 452 a1e91c24dab5
child 471 4c7f687e4313
equal deleted inserted replaced
453:7a3a3952c431 454:58d57594b802
   392                     for l in fl.revision(r).splitlines():
   392                     for l in fl.revision(r).splitlines():
   393                         if l:
   393                         if l:
   394                             n, k = l.split(" ", 1)
   394                             n, k = l.split(" ", 1)
   395                             self.tagscache[k.strip()] = bin(n)
   395                             self.tagscache[k.strip()] = bin(n)
   396             except KeyError: pass
   396             except KeyError: pass
       
   397             for k, n in self.ui.configitems("tags"):
       
   398                 self.tagscache[k] = bin(n)
       
   399                 
   397             self.tagscache['tip'] = self.changelog.tip()
   400             self.tagscache['tip'] = self.changelog.tip()
   398 
   401 
   399         return self.tagscache
   402         return self.tagscache
   400 
   403 
   401     def tagslist(self):
   404     def tagslist(self):