diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-10 15:19:09 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-10 15:19:09 -0500 |
commit | bd179654c530a2d20a79104514e4f9e663d33cfe (patch) | |
tree | 1de32903b0c3ee8d4a7ceebca3566e055f9d1d08 /test/backtest.py | |
parent | 53f3439dab1cec091cf9623e882435e50838e448 (diff) | |
download | python-coveragepy-bd179654c530a2d20a79104514e4f9e663d33cfe.tar.gz |
Upgrading pylint means fixing more nits.
Diffstat (limited to 'test/backtest.py')
-rw-r--r-- | test/backtest.py | 2 |
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): |