# HG changeset patch # User Sean Farley # Date 1395678053 18000 # Node ID d29a3f988b74f3e3d77af93115170258c04a283d # Parent 1553a4b612218ff7f909afe2970f07e1df7cfc81 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. diff --git a/hgsubversion/svnmeta.py b/hgsubversion/svnmeta.py --- a/hgsubversion/svnmeta.py +++ b/hgsubversion/svnmeta.py @@ -389,7 +389,8 @@ class SVNMeta(object): (or tag) we have, for our purposes. """ path = self.normalize(path) - return self.layoutobj.get_path_tag(path, self.taglocations) + tloc = self.layoutobj.taglocations(self.metapath) + return self.layoutobj.get_path_tag(path, tloc) def split_branch_path(self, path, existing=True): """Figure out which branch inside our repo this path represents, and