diff options
author | Monty Taylor <mordred@inaugust.com> | 2012-01-31 13:39:36 -0500 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2012-01-31 14:15:57 -0500 |
commit | cf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892 (patch) | |
tree | bd2a19e671e21965cb795de55c25275bc2990c41 /bin | |
parent | 826319befdb552e1fb9098e0bd5518ce11915b0a (diff) | |
download | keystone-cf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892.tar.gz |
Fix pep8 violations.
Change-Id: I12e304c567b92178e193c60599c3be606cc70d38
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/keystone-manage | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/keystone-manage b/bin/keystone-manage index bcc27195e..e551c47e2 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) |