changeset 1381:2522049c6bed

maps: remove meta.caseignoreauthors from load method Since this is now taken care of in AuthorMap.__setitem__, we remove this check from the AuthorMap.load method so that it is easy to refactor.
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:58 -0500
parents 332ad9ea579b
children d996850ac4e8
files hgsubversion/maps.py
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/maps.py
+++ b/hgsubversion/maps.py
@@ -71,9 +71,6 @@ class AuthorMap(dict):
             src = src.strip()
             dst = dst.strip()
 
-            if self.meta.caseignoreauthors:
-                src = src.lower()
-
             if writing:
                 if not src in self:
                     self.meta.ui.debug('adding author %s to author map\n' % src)