summaryrefslogtreecommitdiff
path: root/test/backtest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-10 15:19:09 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-11-10 15:19:09 -0500
commitbd179654c530a2d20a79104514e4f9e663d33cfe (patch)
tree1de32903b0c3ee8d4a7ceebca3566e055f9d1d08 /test/backtest.py
parent53f3439dab1cec091cf9623e882435e50838e448 (diff)
downloadpython-coveragepy-bd179654c530a2d20a79104514e4f9e663d33cfe.tar.gz
Upgrading pylint means fixing more nits.
Diffstat (limited to 'test/backtest.py')
-rw-r--r--test/backtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/backtest.py b/test/backtest.py
index c54171d..b17aa24 100644
--- a/test/backtest.py
+++ b/test/backtest.py
@@ -31,7 +31,7 @@ else:
stderr=subprocess.STDOUT
)
output, _ = proc.communicate()
- status = proc.returncode
+ status = proc.returncode # pylint: disable=E1101
# Get the output, and canonicalize it to strings with newlines.
if not isinstance(output, str):