From cf3f671a050f5cb5a2acc8c8c4b0b6b7a3a0d892 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 31 Jan 2012 13:39:36 -0500 Subject: Fix pep8 violations. Change-Id: I12e304c567b92178e193c60599c3be606cc70d38 --- bin/keystone-manage | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'bin') 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) -- cgit