summaryrefslogtreecommitdiff
path: root/cloudinit/CloudConfig/cc_bootcmd.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2012-01-17 12:34:19 -0500
committerScott Moser <smoser@ubuntu.com>2012-01-17 12:34:19 -0500
commitc33eedb47b2b22c797051da197fd80e74f1db179 (patch)
treef1958cfc36e53fc406fea4963b1305f760570847 /cloudinit/CloudConfig/cc_bootcmd.py
parent89eafa0a6c1a28331b3b3c59ba94803052c63583 (diff)
downloadvyos-cloud-init-c33eedb47b2b22c797051da197fd80e74f1db179.tar.gz
vyos-cloud-init-c33eedb47b2b22c797051da197fd80e74f1db179.zip
[PATCH 2/4] Fix pylint conventions C0322 (operator not preceded by a space)
From: Juerg Haefliger <juerg.haefliger@hp.com>
Diffstat (limited to 'cloudinit/CloudConfig/cc_bootcmd.py')
-rw-r--r--cloudinit/CloudConfig/cc_bootcmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/CloudConfig/cc_bootcmd.py b/cloudinit/CloudConfig/cc_bootcmd.py
index fc925447..47778897 100644
--- a/cloudinit/CloudConfig/cc_bootcmd.py
+++ b/cloudinit/CloudConfig/cc_bootcmd.py
@@ -35,8 +35,8 @@ def handle(_name,cfg,cloud,log,_args):
raise
try:
- env=os.environ.copy()
- env['INSTANCE_ID']=cloud.get_instance_id()
+ env = os.environ.copy()
+ env['INSTANCE_ID'] = cloud.get_instance_id()
subprocess.check_call(['/bin/sh'], env=env, stdin=tmpf)
tmpf.close()
except: