diff options
| -rw-r--r-- | cloudinit/config/cc_power_state_change.py | 2 | ||||
| -rw-r--r-- | cloudinit/util.py | 6 | ||||
| -rwxr-xr-x | setup.py | 5 | ||||
| -rw-r--r-- | tests/unittests/test_util.py | 2 | 
4 files changed, 9 insertions, 6 deletions
| diff --git a/cloudinit/config/cc_power_state_change.py b/cloudinit/config/cc_power_state_change.py index de0c0bbd..188047e5 100644 --- a/cloudinit/config/cc_power_state_change.py +++ b/cloudinit/config/cc_power_state_change.py @@ -100,7 +100,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 +        ret = proc.returncode  # pylint: disable=E1101      except Exception:          doexit(EXIT_FAIL)      doexit(ret) diff --git a/cloudinit/util.py b/cloudinit/util.py index c961bbc7..52b528ea 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -487,7 +487,7 @@ def redirect_output(outfmt, errfmt, o_out=None, o_err=None):              new_fp = open(arg, owith)          elif mode == "|":              proc = subprocess.Popen(arg, shell=True, stdin=subprocess.PIPE) -            new_fp = proc.stdin +            new_fp = proc.stdin  # pylint: disable=E1101          else:              raise TypeError("Invalid type for output format: %s" % outfmt) @@ -509,7 +509,7 @@ def redirect_output(outfmt, errfmt, o_out=None, o_err=None):              new_fp = open(arg, owith)          elif mode == "|":              proc = subprocess.Popen(arg, shell=True, stdin=subprocess.PIPE) -            new_fp = proc.stdin +            new_fp = proc.stdin  # pylint: disable=E1101          else:              raise TypeError("Invalid type for error format: %s" % errfmt) @@ -1478,7 +1478,7 @@ def subp(args, data=None, rcs=None, env=None, capture=True, shell=False,          (out, err) = sp.communicate(data)      except OSError as e:          raise ProcessExecutionError(cmd=args, reason=e) -    rc = sp.returncode +    rc = sp.returncode  # pylint: disable=E1101      if rc not in rcs:          raise ProcessExecutionError(stdout=out, stderr=err,                                      exit_code=rc, @@ -61,9 +61,10 @@ def tiny_p(cmd, capture=True):      sp = subprocess.Popen(cmd, stdout=stdout,                      stderr=stderr, stdin=None)      (out, err) = sp.communicate() -    if sp.returncode not in [0]: +    ret = sp.returncode  # pylint: disable=E1101 +    if ret not in [0]:          raise RuntimeError("Failed running %s [rc=%s] (%s, %s)"  -                            % (cmd, sp.returncode, out, err)) +                            % (cmd, ret, out, err))      return (out, err) diff --git a/tests/unittests/test_util.py b/tests/unittests/test_util.py index 7ff9a57f..5853cb0f 100644 --- a/tests/unittests/test_util.py +++ b/tests/unittests/test_util.py @@ -1,3 +1,5 @@ +# pylint: disable=C0301 +# the mountinfo data lines are too long  import os  import stat  import yaml | 
