diff hgsubversion/svnmeta.py @ 1217:a10a4fc69364

maps: change filemap 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:48 -0500
parents 572417ad0313
children 9490a3052935
line wrap: on
line diff
--- a/hgsubversion/svnmeta.py
+++ b/hgsubversion/svnmeta.py
@@ -234,7 +234,7 @@ class SVNMeta(object):
     @property
     def filemap(self):
         if self._filemap is None:
-            self._filemap = maps.FileMap(self.ui, self.filemap_file)
+            self._filemap = maps.FileMap(self)
         return self._filemap
 
     @property