diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-29 22:05:36 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-29 22:05:36 -0400 |
commit | 2ec13d5d118c249bfdb8b40a56c03c59e5c2e94d (patch) | |
tree | b2a59d8a70bd17eef416f97a7900dc0c40cf85df /setuptools/tests/environment.py | |
parent | f4d7965c75a6452d405c0911102318f236a2afcc (diff) | |
download | external_python_setuptools-2ec13d5d118c249bfdb8b40a56c03c59e5c2e94d.tar.gz external_python_setuptools-2ec13d5d118c249bfdb8b40a56c03c59e5c2e94d.tar.bz2 external_python_setuptools-2ec13d5d118c249bfdb8b40a56c03c59e5c2e94d.zip |
Correct typo
Diffstat (limited to 'setuptools/tests/environment.py')
-rw-r--r-- | setuptools/tests/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/environment.py b/setuptools/tests/environment.py index bbc7fd35..fa26a9ec 100644 --- a/setuptools/tests/environment.py +++ b/setuptools/tests/environment.py @@ -107,7 +107,7 @@ def run_setup_py(cmd, pypath=None, path=None, #decode the console string if needed if hasattr(data, "decode"): - data = data.decode() # should use the preffered encoding + data = data.decode() # should use the preferred encoding data = unicodedata.normalize('NFC', data) #communciate calls wait() |