summaryrefslogtreecommitdiff
path: root/sphinx/setup_command.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-17 05:15:14 +0200
committerGeorg Brandl <georg@python.org>2010-08-17 05:15:14 +0200
commit0e52a7826dea307077981676d72f84cd9118651d (patch)
treefa8859830528b9cae91bd11318fe66b7884dade5 /sphinx/setup_command.py
parent1d097329ccd571f653aa1065fa287a7a90218537 (diff)
downloadsphinx-0e52a7826dea307077981676d72f84cd9118651d.tar.gz
Fix missing print statement.
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r--sphinx/setup_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py
index e2d83bc6..8974b988 100644
--- a/sphinx/setup_command.py
+++ b/sphinx/setup_command.py
@@ -144,7 +144,7 @@ class BuildDoc(Command):
except Exception, err:
from docutils.utils import SystemMessage
if isinstance(err, SystemMessage):
- sys.stderr, darkred('reST markup error:')
+ print >>sys.stderr, darkred('reST markup error:')
print >>sys.stderr, err.args[0].encode('ascii',
'backslashreplace')
else: