Handle escaping in get_latest_author_by_email() (Fixes issue 46).

Signed-off-by: Adam Waldenberg <adam.waldenberg@ejwa.se>
This commit is contained in:
Jon Warghed 2014-11-17 22:56:21 +01:00 committed by Adam Waldenberg
parent 1d2fd619bd
commit 68a6e90228
1 changed files with 1 additions and 0 deletions

View File

@ -178,6 +178,7 @@ class Changes:
return self.authors_dateinfo
def get_latest_author_by_email(self, name):
name = name.decode("unicode_escape", "ignore")
return self.authors_by_email[name]
def get_latest_email_by_author(self, name):