comparison mercurial/localrepo.py @ 4216:6c0be67c2b27

tags: remove unused variables
author Matt Mackall <mpm@selenic.com>
date Wed, 14 Mar 2007 18:49:10 -0500
parents e29f2db5ab18
children 3be4785f8994
comparison
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