comparison hgsubversion/svnmeta.py @ 1442:a0ba38def79b

AuthorMap: no longer take a meta
author Augie Fackler <raf@durin42.com>
date Mon, 06 Jun 2016 00:46:45 -0400
parents 0a6b3da6d34c
children 887430c1b8ab
comparison
equal deleted inserted replaced
1441:e79ff1a85938 1442:a0ba38def79b
290 290
291 @property 291 @property
292 def authors(self): 292 def authors(self):
293 if self._authors is None: 293 if self._authors is None:
294 self._authors = maps.AuthorMap( 294 self._authors = maps.AuthorMap(
295 self, self.defaulthost, self.caseignoreauthors, 295 self.ui, self.authormap_file, self.defaulthost,
296 self.mapauthorscmd, self.defaultauthors) 296 self.caseignoreauthors, self.mapauthorscmd, self.defaultauthors)
297 return self._authors 297 return self._authors
298 298
299 @property 299 @property
300 def filemap_file(self): 300 def filemap_file(self):
301 return os.path.join(self.metapath, 'filemap') 301 return os.path.join(self.metapath, 'filemap')