summaryrefslogtreecommitdiff
path: root/cloudinit/handlers
diff options
context:
space:
mode:
authorParide Legovini <paride.legovini@canonical.com>2019-01-30 15:38:56 +0000
committerServer Team CI Bot <josh.powers+server-team-bot@canonical.com>2019-01-30 15:38:56 +0000
commit94a64529dccebd8fe8c7969370b8696e46023fbd (patch)
tree24028bb1e5f2ff24a4f605887381c14659f02a67 /cloudinit/handlers
parent8ee294d567c071fff1f9567e968ba73602308192 (diff)
downloadvyos-cloud-init-94a64529dccebd8fe8c7969370b8696e46023fbd.tar.gz
vyos-cloud-init-94a64529dccebd8fe8c7969370b8696e46023fbd.zip
Resolve flake8 comparison and pycodestyle over-ident issues
Fixes: - flake8: use ==/!= to compare str, bytes, and int literals - pycodestyle: E117 over-indented
Diffstat (limited to 'cloudinit/handlers')
-rw-r--r--cloudinit/handlers/upstart_job.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/handlers/upstart_job.py b/cloudinit/handlers/upstart_job.py
index 83fb0724..003cad60 100644
--- a/cloudinit/handlers/upstart_job.py
+++ b/cloudinit/handlers/upstart_job.py
@@ -89,7 +89,7 @@ def _has_suitable_upstart():
util.subp(["dpkg", "--compare-versions", dpkg_ver, "ge", good])
return True
except util.ProcessExecutionError as e:
- if e.exit_code is 1:
+ if e.exit_code == 1:
pass
else:
util.logexc(LOG, "dpkg --compare-versions failed [%s]",