diff options
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) |