# HG changeset patch # User Sean Farley # Date 1393023765 21600 # Node ID 770ac6de58c5aacabb267624d1cac69c70a8610c # Parent c2b72618645adb9c4342555c2015ce9337c11128 svnmeta: add tagfile property for use with the Tags object This allows us to have one place for defining the name of this file. diff --git a/hgsubversion/svnmeta.py b/hgsubversion/svnmeta.py --- a/hgsubversion/svnmeta.py +++ b/hgsubversion/svnmeta.py @@ -162,6 +162,11 @@ class SVNMeta(object): def branchmapfile(self): return os.path.join(self.metapath, 'branchmap') + @property + def tagfile(self): + # called tagmap for backwards compatibility + return os.path.join(self.metapath, 'tagmap') + @property def tagmapfile(self): # called tag-renames for backwards compatibility