diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:54:54 +0100 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:54:54 +0100 |
commit | 6a2031c4dc005d9a0f42b10200b828eee5cf166f (patch) | |
tree | a57029f73b060b9e8ab6068d326f939dc479d191 /cloudinit/CloudConfig/cc_update_etc_hosts.py | |
parent | 234cefd314a7e1cfb51fad3bdf344d801a8b238d (diff) | |
download | vyos-cloud-init-6a2031c4dc005d9a0f42b10200b828eee5cf166f.tar.gz vyos-cloud-init-6a2031c4dc005d9a0f42b10200b828eee5cf166f.zip |
[PATCH 06/13] Fix pylint warnings W0612 (unused variable)
From: Juerg Haefliger <juerg.haefliger@hp.com>
Diffstat (limited to 'cloudinit/CloudConfig/cc_update_etc_hosts.py')
-rw-r--r-- | cloudinit/CloudConfig/cc_update_etc_hosts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_update_etc_hosts.py b/cloudinit/CloudConfig/cc_update_etc_hosts.py index 9e3a1dbb..1c245e67 100644 --- a/cloudinit/CloudConfig/cc_update_etc_hosts.py +++ b/cloudinit/CloudConfig/cc_update_etc_hosts.py @@ -34,7 +34,7 @@ def handle(_name,cfg,cloud,log,_args): util.render_to_file('hosts', '/etc/hosts', \ { 'hostname' : hostname, 'fqdn' : fqdn }) - except Exception as e: + except Exception: log.warn("failed to update /etc/hosts") raise elif manage_hosts == "localhost": |