summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2012-01-31 13:39:36 -0500
committerMonty Taylor <mordred@inaugust.com>2012-01-31 14:15:57 -0500
commitcf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892 (patch)
treebd2a19e671e21965cb795de55c25275bc2990c41 /bin
parent826319befdb552e1fb9098e0bd5518ce11915b0a (diff)
downloadkeystone-cf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892.tar.gz
keystone-cf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892.tar.xz
keystone-cf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892.zip
Fix pep8 violations.
Change-Id: I12e304c567b92178e193c60599c3be606cc70d38
Diffstat (limited to 'bin')
-rwxr-xr-xbin/keystone-manage14
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/keystone-manage b/bin/keystone-manage
index bcc27195..e551c47e 100755
--- a/bin/keystone-manage
+++ b/bin/keystone-manage
@@ -18,11 +18,11 @@ from keystone import cli
if __name__ == '__main__':
- dev_conf = os.path.join(possible_topdir,
- 'etc',
- 'keystone.conf')
- config_files = None
- if os.path.exists(dev_conf):
- config_files = [dev_conf]
+ dev_conf = os.path.join(possible_topdir,
+ 'etc',
+ 'keystone.conf')
+ config_files = None
+ if os.path.exists(dev_conf):
+ config_files = [dev_conf]
- cli.main(argv=sys.argv, config_files=config_files)
+ cli.main(argv=sys.argv, config_files=config_files)