summaryrefslogtreecommitdiff
path: root/_pytest/assertion
diff options
context:
space:
mode:
authorAndras Tim <andras.tim@gmail.com>2017-07-17 01:25:08 +0200
committerAndras Tim <andras.tim@gmail.com>2017-07-17 01:44:22 +0200
commit2e8caefcab33942a754ee7ddf7697fe487a4367a (patch)
treea18b77c24913758cffbf15ecfa461ccba3900ded /_pytest/assertion
parent3fabc4d21918a0927a1717e2616862400bde5440 (diff)
downloadpytest-2e8caefcab33942a754ee7ddf7697fe487a4367a.tar.gz
Fixed E225 flake8 errors
missing whitespace around operator
Diffstat (limited to '_pytest/assertion')
-rw-r--r--_pytest/assertion/rewrite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/assertion/rewrite.py b/_pytest/assertion/rewrite.py
index 95cc217d4..2ffa3c03e 100644
--- a/_pytest/assertion/rewrite.py
+++ b/_pytest/assertion/rewrite.py
@@ -261,7 +261,7 @@ def _write_pyc(state, co, source_stat, pyc):
fp = open(pyc, "wb")
except IOError:
err = sys.exc_info()[1].errno
- state.trace("error writing pyc file at %s: errno=%s" %(pyc, err))
+ state.trace("error writing pyc file at %s: errno=%s" % (pyc, err))
# we ignore any failure to write the cache file
# there are many reasons, permission-denied, __pycache__ being a
# file etc.