summaryrefslogtreecommitdiffstats
path: root/keystone/openstack
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2012-06-01 10:03:34 -0500
committerJoe Heck <heckj@mac.com>2012-06-01 08:19:04 -0700
commit4bfa203ac433da1537d8da963bd7554d36f2add7 (patch)
treebe16afee2716241c86012886eae556b7645f0788 /keystone/openstack
parent1349e127356c6a25cb2e50008c8b925e5934676a (diff)
downloadkeystone-4bfa203ac433da1537d8da963bd7554d36f2add7.tar.gz
keystone-4bfa203ac433da1537d8da963bd7554d36f2add7.tar.xz
keystone-4bfa203ac433da1537d8da963bd7554d36f2add7.zip
PEP8 fixes
Change-Id: I957311f7e2f371217d8812c7319b87623e8972e9
Diffstat (limited to 'keystone/openstack')
-rw-r--r--keystone/openstack/common/setup.py2
1 files changed, 1 insertions, 1 deletions
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