diff hgsubversion/svnmeta.py @ 1210:a0c6dbd9afbb

maps: change tagmap to initialize with an svnmeta object This refactoring will help us in a future patch have all map objects inherit from a common ancestor.
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:47 -0500
parents 20c28c511551
children 56d6e0273733
line wrap: on
line diff
--- a/hgsubversion/svnmeta.py
+++ b/hgsubversion/svnmeta.py
@@ -261,7 +261,7 @@ class SVNMeta(object):
     @property
     def tagmap(self):
         if self._tagmap is None:
-            self._tagmap = maps.TagMap(self.ui, self.tagmap_file)
+            self._tagmap = maps.TagMap(self)
         return self._tagmap
 
     @property