aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-11-25 08:25:09 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-11-25 08:25:09 -0500
commit00de710988226c3189bd6abb13cfa87c7d97de5b (patch)
treecdb88b87d878c5080a84fe106940a937f0e1bdf5 /setuptools/command
parentd45be2cc4f7a1e4ddc70b363baaa613c6b068b98 (diff)
downloadexternal_python_setuptools-00de710988226c3189bd6abb13cfa87c7d97de5b.tar.gz
external_python_setuptools-00de710988226c3189bd6abb13cfa87c7d97de5b.tar.bz2
external_python_setuptools-00de710988226c3189bd6abb13cfa87c7d97de5b.zip
Fix NameError
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index a1d41b27..103c5f20 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -640,7 +640,7 @@ def write_requirements(cmd, basename, filename):
def write_setup_requirements(cmd, basename, filename):
- data = StringIO()
+ data = io.StringIO()
_write_requirements(data, cmd.distribution.setup_requires)
cmd.write_or_delete_file("setup-requirements", filename, data.getvalue())