further remove evidence of pylint.

This just removes comments '# pylint:' things and other code
remnents of pylint.
This commit is contained in:
Scott Moser
2014-08-26 15:53:41 -04:00
parent 309e21aec1
commit 6b2fc2034a
28 changed files with 45 additions and 105 deletions

View File

@@ -46,7 +46,7 @@ def tiny_p(cmd, capture=True):
sp = subprocess.Popen(cmd, stdout=stdout,
stderr=stderr, stdin=None)
(out, err) = sp.communicate()
ret = sp.returncode # pylint: disable=E1101
ret = sp.returncode
if ret not in [0]:
raise RuntimeError("Failed running %s [rc=%s] (%s, %s)"
% (cmd, ret, out, err))