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/handlers/upstart_job.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/handlers/upstart_job.py')
-rw-r--r-- | cloudinit/handlers/upstart_job.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/handlers/upstart_job.py b/cloudinit/handlers/upstart_job.py index 1ca92d4b..dc338769 100644 --- a/cloudinit/handlers/upstart_job.py +++ b/cloudinit/handlers/upstart_job.py @@ -97,7 +97,7 @@ def _has_suitable_upstart(): else: util.logexc(LOG, "dpkg --compare-versions failed [%s]", e.exit_code) - except Exception as e: + except Exception: util.logexc(LOG, "dpkg --compare-versions failed") return False else: |