diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-10-03 14:30:11 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-10-03 14:30:11 (GMT) |
commit | c9afba853ca4884d3be01e2da6ba5e3cc61cd75c (patch) | |
tree | 78f3103e1058e908ebf0bf3ac7d408ed8f299dd2 /Lib/distutils/command | |
parent | 866c74e3d61d1563957e3d8bfa8ef38f85515360 (diff) | |
download | cpython-c9afba853ca4884d3be01e2da6ba5e3cc61cd75c.zip cpython-c9afba853ca4884d3be01e2da6ba5e3cc61cd75c.tar.gz cpython-c9afba853ca4884d3be01e2da6ba5e3cc61cd75c.tar.bz2 |
Merged revisions 85197 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85197 | tarek.ziade | 2010-10-03 16:18:09 +0200 (Sun, 03 Oct 2010) | 1 line
Fixed #8980: distutils.command.check was failing w/ docutils installed
........
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/check.py b/Lib/distutils/command/check.py index 12844cb..2657c69 100644 --- a/Lib/distutils/command/check.py +++ b/Lib/distutils/command/check.py @@ -13,7 +13,7 @@ try: from docutils.parsers.rst import Parser from docutils import frontend from docutils import nodes - from StringIO import StringIO + from io import StringIO class SilentReporter(Reporter): |