diff options
Diffstat (limited to 'openstack/common')
| -rw-r--r-- | openstack/common/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openstack/common/setup.py b/openstack/common/setup.py index 60c731a..2c16b5b 100644 --- a/openstack/common/setup.py +++ b/openstack/common/setup.py @@ -31,7 +31,8 @@ def parse_mailmap(mailmap='.mailmap'): for l in fp: l = l.strip() if not l.startswith('#') and ' ' in l: - canonical_email, alias = l.split(' ') + canonical_email, alias = [x for x in l.split(' ') \ + if x.startswith('<')] mapping[alias] = canonical_email return mapping |
