[pypy-commit] pypy unicode-utf8-py3: typo

mattip pypy.commits at gmail.com
Thu Aug 23 06:27:06 EDT 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: unicode-utf8-py3
Changeset: r95025:f372c8123f51
Date: 2018-08-23 13:26 +0300
http://bitbucket.org/pypy/pypy/changeset/f372c8123f51/

Log:	typo

diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -398,7 +398,7 @@
         config_py_file = os.path.expanduser(config_py_file)
         if py.path.local(config_py_file).check(file=1):
             print >>out, "using config", config_py_file
-            if ('machine' in config_py_file:
+            if 'machine' in config_py_file:
                 with open(config_py_file, 'r') as fid:
                     print >>out, fid.read()
             execfile(config_py_file, run_param.__dict__)


More information about the pypy-commit mailing list