summaryrefslogtreecommitdiff
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-11 15:14:17 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-11 15:14:17 +0000
commitc2936b786a18a99eb657a4b32a0694c3a4bcc82a (patch)
treea49bca000f2ccf4f9444973f5913b59594b94330 /Lib/distutils/command
parent942825f7de2b27dce73dccd4cd827dd86f409bba (diff)
downloadcpython-git-c2936b786a18a99eb657a4b32a0694c3a4bcc82a.tar.gz
testing a full check case
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/check.py b/Lib/distutils/command/check.py
index c72914952e..d164f3f527 100644
--- a/Lib/distutils/command/check.py
+++ b/Lib/distutils/command/check.py
@@ -65,7 +65,7 @@ class check(Command):
if self.metadata:
self.check_metadata()
if self.restructuredtext:
- if docutils:
+ if HAS_DOCUTILS:
self.check_restructuredtext()
elif self.strict:
raise DistutilsSetupError('The docutils package is needed.')