Add credit for Barry.

This commit is contained in:
Georg Brandl
2010-05-01 10:54:58 +02:00
parent 9cc95adf06
commit b9a5a6791d
2 changed files with 3 additions and 5 deletions
+1
View File
@@ -27,6 +27,7 @@ Other contributors, listed alphabetically, are:
* Antonio Valentino -- qthelp builder
* Pauli Virtanen -- autodoc improvements, autosummary extension
* Stefan van der Walt -- autosummary extension
* Barry Warsaw -- setup command improvements
* Sebastian Wiesner -- image handling, distutils support
Many thanks for all contributions!
+2 -5
View File
@@ -21,7 +21,7 @@ from sphinx import __version__
from sphinx.errors import SphinxError
from sphinx.application import Sphinx
from sphinx.util import Tee, format_exception_cut_frames, save_traceback
from sphinx.util.console import red, nocolor, color_terminal
from sphinx.util.console import red, nocolor, init_color
def usage(argv, msg=None):
@@ -57,10 +57,7 @@ Modi:
def main(argv):
if not color_terminal():
# Windows' poor cmd box doesn't understand ANSI sequences
nocolor()
init_color()
try:
opts, args = getopt.getopt(argv[1:], 'ab:t:d:c:CD:A:ng:NEqQWw:P')
allopts = set(opt[0] for opt in opts)