diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-12 00:51:39 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-12 00:58:07 +0200 |
commit | dbc78543550089cc60b8df84dd88502257e01bc7 (patch) | |
tree | 6135e9eda305fdfb4397c1d80acf917df79daec6 | |
parent | f42b3c7599d7777d057178da379b17249e118f0c (diff) | |
download | micropython-dbc78543550089cc60b8df84dd88502257e01bc7.tar.gz micropython-dbc78543550089cc60b8df84dd88502257e01bc7.zip |
run-tests: PEP8 fix.
-rwxr-xr-x | tests/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests index d0c7112de8..5a486565d5 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -18,7 +18,7 @@ else: MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../unix/micropython') # Set PYTHONIOENCODING so that CPython will use utf-8 on systems which set another encoding in the locale -os.environ['PYTHONIOENCODING']='utf-8' +os.environ['PYTHONIOENCODING'] = 'utf-8' def rm_f(fname): if os.path.exists(fname): |