mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-03-19 14:58:12 +01:00
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:
parent
1d2fd619bd
commit
68a6e90228
1 changed files with 1 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue