From d13342409fe1ce981d996e02f48eddf4abc35d6b Mon Sep 17 00:00:00 2001 From: Zhiteng Huang Date: Mon, 23 Sep 2013 23:51:05 +0800 Subject: [PATCH] Fix over-indent in compute/nova There are two lines in compute/nova.py that uses 8 spaces indent, this simple patch correct those to 4 spaces. Change-Id: I8f7849385ef59a085b5e3cc45954a2f2a19442ee --- cinder/compute/nova.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cinder/compute/nova.py b/cinder/compute/nova.py index 13c960063..d60a7da80 100644 --- a/cinder/compute/nova.py +++ b/cinder/compute/nova.py @@ -77,8 +77,8 @@ def novaclient(context, admin=False): nova_catalog_info = CONF.nova_catalog_info if admin: - nova_endpoint_template = CONF.nova_endpoint_admin_template - nova_catalog_info = CONF.nova_catalog_admin_info + nova_endpoint_template = CONF.nova_endpoint_admin_template + nova_catalog_info = CONF.nova_catalog_admin_info if nova_endpoint_template: url = nova_endpoint_template % context.to_dict() -- 2.45.2