From 4bfa203ac433da1537d8da963bd7554d36f2add7 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Fri, 1 Jun 2012 10:03:34 -0500 Subject: PEP8 fixes Change-Id: I957311f7e2f371217d8812c7319b87623e8972e9 --- keystone/openstack/common/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keystone/openstack') diff --git a/keystone/openstack/common/setup.py b/keystone/openstack/common/setup.py index 984cce1f..c219152a 100644 --- a/keystone/openstack/common/setup.py +++ b/keystone/openstack/common/setup.py @@ -31,7 +31,7 @@ def parse_mailmap(mailmap='.mailmap'): for l in fp: l = l.strip() if not l.startswith('#') and ' ' in l: - canonical_email, alias = [x for x in l.split(' ') \ + canonical_email, alias = [x for x in l.split(' ') if x.startswith('<')] mapping[alias] = canonical_email return mapping -- cgit