From 33440cf21a7ca56d8c9f668be780b2a5b705f352 Mon Sep 17 00:00:00 2001 From: James Page Date: Wed, 10 Feb 2016 13:29:21 +0000 Subject: [PATCH] Lint tidy --- hooks/heat_context.py | 3 ++- hooks/heat_utils.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hooks/heat_context.py b/hooks/heat_context.py index 04cbc5c..492f19a 100644 --- a/hooks/heat_context.py +++ b/hooks/heat_context.py @@ -61,7 +61,8 @@ class HeatSecurityContext(context.OSContextGenerator): # check if we have stored encryption key encryption = get_encryption_key() ctxt['encryption_key'] = encryption - ctxt['heat_domain_admin_passwd'] = leader_get('heat-domain-admin-passwd') + ctxt['heat_domain_admin_passwd'] = \ + leader_get('heat-domain-admin-passwd') return ctxt diff --git a/hooks/heat_utils.py b/hooks/heat_utils.py index 2c97453..102e6b4 100644 --- a/hooks/heat_utils.py +++ b/hooks/heat_utils.py @@ -111,7 +111,8 @@ CONFIG_FILES = OrderedDict([ 'services': ['apache2'], }), (ADMIN_OPENRC, { - 'contexts': [HeatIdentityServiceContext(service=SVC, service_user=SVC)], + 'contexts': [HeatIdentityServiceContext(service=SVC, + service_user=SVC)], 'services': [] }), ])