hg2git.py: Remove leading/trailing spaces from authormap

The current regex may leave us with keys/values having trailing/leading
spaces in all flavours which will break lookup. Solution: strip() key
and value.

Signed-off-by: Rocco Rutte <pdmef@gmx.net>
This commit is contained in:
Rocco Rutte
2007-03-12 10:45:32 +00:00
parent 59a481a2b0
commit cedbd0fb86

View File

@@ -278,7 +278,7 @@ def load_authors(filename):
sys.stderr.write('Invalid file format in [%s], line %d\n' % (filename,l))
continue
# put key:value in cache, key without ^:
cache[m.group(1)]=m.group(2)
cache[m.group(1).strip()]=m.group(2).strip()
f.close()
sys.stderr.write('Loaded %d authors\n' % l)
return cache