diff hgsubversion/maps.py @ 1216:572417ad0313

svnmeta: turn filemap into a lazy property
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:48 -0500
parents 2c793092862b
children a10a4fc69364
line wrap: on
line diff
--- a/hgsubversion/maps.py
+++ b/hgsubversion/maps.py
@@ -393,7 +393,7 @@ class BranchMap(dict):
         if path != self.meta.branchmap_file:
             writing = open(self.meta.branchmap_file, 'a')
 
-        self.ui.debug('reading branchmap from %s\n' % path)
+        self.meta.ui.debug('reading branchmap from %s\n' % path)
         f = open(path, 'r')
         for number, line in enumerate(f):