changeset 1385:9139d9295a36

maps: make author map inherit from base map
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:59 -0500
parents 2d1d05e6e46c
children 8bd40916106f
files hgsubversion/maps.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/maps.py
+++ b/hgsubversion/maps.py
@@ -72,7 +72,7 @@ class BaseMap(dict):
         if writing:
             writing.close()
 
-class AuthorMap(dict):
+class AuthorMap(BaseMap):
     '''A mapping from Subversion-style authors to Mercurial-style
     authors, and back. The data is stored persistently on disk.