comparison hgsubversion/svnmeta.py @ 1289:d29a3f988b74

svnmeta: remove unneeded call to self.taglocations This is the only call to taglocations, therefore we remove it so that we can remove the property in the next patch.
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:53 -0500
parents 6d6345604772
children 3549a84bdebe
comparison
equal deleted inserted replaced
1288:1553a4b61221 1289:d29a3f988b74
387 387
388 Note that it's only a tag if it was copied from the path '' in a branch 388 Note that it's only a tag if it was copied from the path '' in a branch
389 (or tag) we have, for our purposes. 389 (or tag) we have, for our purposes.
390 """ 390 """
391 path = self.normalize(path) 391 path = self.normalize(path)
392 return self.layoutobj.get_path_tag(path, self.taglocations) 392 tloc = self.layoutobj.taglocations(self.metapath)
393 return self.layoutobj.get_path_tag(path, tloc)
393 394
394 def split_branch_path(self, path, existing=True): 395 def split_branch_path(self, path, existing=True):
395 """Figure out which branch inside our repo this path represents, and 396 """Figure out which branch inside our repo this path represents, and
396 also figure out which path inside that branch it is. 397 also figure out which path inside that branch it is.
397 398