From 186c49409c841bd2bba50ea8629ec214a7fb9627 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 17 May 2013 12:53:32 -0700 Subject: Fix flake8 errors in anticipation of flake8. Change-Id: I7c713f95eb974d5998d2be50722df7d6f64a234e --- nova/cmd/spicehtml5proxy.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nova/cmd') diff --git a/nova/cmd/spicehtml5proxy.py b/nova/cmd/spicehtml5proxy.py index 8e005bcad..c6f2be53d 100644 --- a/nova/cmd/spicehtml5proxy.py +++ b/nova/cmd/spicehtml5proxy.py @@ -59,13 +59,13 @@ opts = [ help='Port on which to listen for incoming requests'), ] -CONF = cfg.CONF -CONF.register_cli_opts(opts) -CONF.import_opt('debug', 'nova.openstack.common.log') - def main(): # Setup flags + + CONF = cfg.CONF + CONF.register_cli_opts(opts) + CONF.import_opt('debug', 'nova.openstack.common.log') config.parse_args(sys.argv) if CONF.ssl_only and not os.path.exists(CONF.cert): -- cgit