summaryrefslogtreecommitdiff
path: root/cloudinit/config
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2018-05-29 13:19:27 -0400
committerScott Moser <smoser@brickies.net>2018-05-29 13:19:27 -0400
commit4ba4639b86edad7ec89a55a61b7d9075f92d2166 (patch)
tree6eed8aa30f265d75f001fb6af549b7e9547e91f1 /cloudinit/config
parentae02c367ea8a6ce8a9e6d97047edf31decd335b2 (diff)
downloadvyos-cloud-init-4ba4639b86edad7ec89a55a61b7d9075f92d2166.tar.gz
vyos-cloud-init-4ba4639b86edad7ec89a55a61b7d9075f92d2166.zip
pyflakes: fix unused variable references identified by pyflakes 2.0.0.
A newer version of pyflakes (2.0.0) was released. It identifed some unused variables that version 1.6.0 did not identify. The change here merely fixes those unused variables.
Diffstat (limited to 'cloudinit/config')
-rw-r--r--cloudinit/config/cc_mounts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_mounts.py b/cloudinit/config/cc_mounts.py
index eca6ea3f..339baba9 100644
--- a/cloudinit/config/cc_mounts.py
+++ b/cloudinit/config/cc_mounts.py
@@ -233,7 +233,7 @@ def setup_swapfile(fname, size=None, maxsize=None):
if str(size).lower() == "auto":
try:
memsize = util.read_meminfo()['total']
- except IOError as e:
+ except IOError:
LOG.debug("Not creating swap: failed to read meminfo")
return