Fix missing print statement.

This commit is contained in:
Georg Brandl 2010-08-17 05:15:14 +02:00
parent 60c75cd33c
commit 9cc47218b6

View File

@ -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: