From: Zhiteng Huang Date: Mon, 23 Sep 2013 15:51:05 +0000 (+0800) Subject: Fix over-indent in compute/nova X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=d13342409fe1ce981d996e02f48eddf4abc35d6b;p=openstack-build%2Fcinder-build.git 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 --- 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()