diff options
author | Scott Moser <smoser@ubuntu.com> | 2018-05-29 13:19:27 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2018-05-29 13:19:27 -0400 |
commit | 4ba4639b86edad7ec89a55a61b7d9075f92d2166 (patch) | |
tree | 6eed8aa30f265d75f001fb6af549b7e9547e91f1 /cloudinit/sources/DataSourceNoCloud.py | |
parent | ae02c367ea8a6ce8a9e6d97047edf31decd335b2 (diff) | |
download | vyos-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/sources/DataSourceNoCloud.py')
-rw-r--r-- | cloudinit/sources/DataSourceNoCloud.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/sources/DataSourceNoCloud.py b/cloudinit/sources/DataSourceNoCloud.py index 5d3a8ddb..2daea59d 100644 --- a/cloudinit/sources/DataSourceNoCloud.py +++ b/cloudinit/sources/DataSourceNoCloud.py @@ -78,7 +78,7 @@ class DataSourceNoCloud(sources.DataSource): LOG.debug("Using seeded data from %s", path) mydata = _merge_new_seed(mydata, seeded) break - except ValueError as e: + except ValueError: pass # If the datasource config had a 'seedfrom' entry, then that takes @@ -117,7 +117,7 @@ class DataSourceNoCloud(sources.DataSource): try: seeded = util.mount_cb(dev, _pp2d_callback, pp2d_kwargs) - except ValueError as e: + except ValueError: if dev in label_list: LOG.warning("device %s with label=%s not a" "valid seed.", dev, label) |