diff options
author | Jay Faulkner <jay@jvf.cc> | 2014-08-26 16:05:58 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-08-26 16:05:58 -0400 |
commit | 31f9129c8a77aec8d3eb6fa649d1caa9b6df347e (patch) | |
tree | 10d634bc7732390c5043bd2ff1a678b5289abb93 /cloudinit/config/cc_power_state_change.py | |
parent | 190cacc430900d9d2dd4dd45c59d01e30e469720 (diff) | |
parent | 5fb6482692cfffba5ba45102858b14ba3acc5bc7 (diff) | |
download | vyos-cloud-init-31f9129c8a77aec8d3eb6fa649d1caa9b6df347e.tar.gz vyos-cloud-init-31f9129c8a77aec8d3eb6fa649d1caa9b6df347e.zip |
Fix pep8 issues, drop pylint.
pep8: passes on pylint 1.5.7 (and 1.5.6 utopic).
intent is that is to be the target for future changes.
pylint: remove as more hassle than its worth.
Intent is to move to pyflakes at some point.
Diffstat (limited to 'cloudinit/config/cc_power_state_change.py')
-rw-r--r-- | cloudinit/config/cc_power_state_change.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/config/cc_power_state_change.py b/cloudinit/config/cc_power_state_change.py index 638daef8..09d37371 100644 --- a/cloudinit/config/cc_power_state_change.py +++ b/cloudinit/config/cc_power_state_change.py @@ -119,7 +119,7 @@ def load_power_state(cfg): def doexit(sysexit): - os._exit(sysexit) # pylint: disable=W0212 + os._exit(sysexit) def execmd(exe_args, output=None, data_in=None): @@ -127,7 +127,7 @@ def execmd(exe_args, output=None, data_in=None): proc = subprocess.Popen(exe_args, stdin=subprocess.PIPE, stdout=output, stderr=subprocess.STDOUT) proc.communicate(data_in) - ret = proc.returncode # pylint: disable=E1101 + ret = proc.returncode except Exception: doexit(EXIT_FAIL) doexit(ret) |