aboutsummaryrefslogtreecommitdiffstats
path: root/command/check.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-10-03 14:18:09 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2010-10-03 14:18:09 +0000
commitf63c10f0b8f07a02e58c75b2da2454808529442c (patch)
treea53165aa2df3c0e4d7a3f737857c90c4d4d2ba18 /command/check.py
parent8eb84ccb87fb80d1e95382003af64a8c7d2f83de (diff)
downloadexternal_python_setuptools-f63c10f0b8f07a02e58c75b2da2454808529442c.tar.gz
external_python_setuptools-f63c10f0b8f07a02e58c75b2da2454808529442c.tar.bz2
external_python_setuptools-f63c10f0b8f07a02e58c75b2da2454808529442c.zip
Fixed #8980: distutils.command.check was failing w/ docutils installed
Diffstat (limited to 'command/check.py')
-rw-r--r--command/check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/command/check.py b/command/check.py
index 12844cbf..2657c696 100644
--- a/command/check.py
+++ b/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):