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
commitf52b43321aad4c8e50bafbfbe95f1e7e570b4b8d (patch)
tree78732b1d1d9a24a84b0424ad5cd355c05c6ca96b /test/backtest.py
parent5aa66708b1c35fc7ce6e234bfe7684325e327ce4 (diff)
downloadpython-coveragepy-git-f52b43321aad4c8e50bafbfbe95f1e7e570b4b8d.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 c54171d3..b17aa242 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):