diff --git a/hg2git.py b/hg2git.py index e5991c1..bcef2e1 100644 --- a/hg2git.py +++ b/hg2git.py @@ -270,7 +270,7 @@ def load_authors(filename): return cache f=open(filename,'r') l=0 - lre=re.compile('^([^= ]+)[ ]*=[ ]*(.+)$') + lre=re.compile('^([^=]+)[ ]*=[ ]*(.+)$') for line in f.readlines(): l+=1 m=lre.match(line)