diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-10-03 14:18:09 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-10-03 14:18:09 (GMT) |
commit | 4bcceef5a12b6c00079ab11ecb233a7933f23ca4 (patch) | |
tree | 87866dde58bc3ab39fb92214d14afda4e564cd69 /Lib/distutils/command/check.py | |
parent | 84060b81e3ea06c7c0752854ef222e7c5fafa58c (diff) | |
download | cpython-4bcceef5a12b6c00079ab11ecb233a7933f23ca4.zip cpython-4bcceef5a12b6c00079ab11ecb233a7933f23ca4.tar.gz cpython-4bcceef5a12b6c00079ab11ecb233a7933f23ca4.tar.bz2 |
Fixed #8980: distutils.command.check was failing w/ docutils installed
Diffstat (limited to 'Lib/distutils/command/check.py')
-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): |