Fix #54: awkward wording in quickstart.

This commit is contained in:
Georg Brandl 2008-11-24 20:42:05 +01:00
parent 46b6689240
commit 30bb2bc9fe

View File

@ -509,12 +509,15 @@ directly.'''
print bold('Finished: An initial directory structure has been created.') print bold('Finished: An initial directory structure has been created.')
print ''' print '''
You should now populate your master file %s and create other documentation You should now populate your master file %s and create other documentation
source files. Use the sphinx-build script to build the docs, like so: source files. ''' % masterfile + (create_makefile and '''\
''' % masterfile + (create_makefile and ''' Use the Makefile to build the docs, like so:
make <builder> make builder
''' or ''' ''' or '''\
sphinx-build -b <builder> %s %s Use the sphinx-build command to build the docs, like so:
''' % (srcdir, builddir)) sphinx-build -b builder %s %s
''' % (srcdir, builddir)) + '''\
where "builder" is one of the supported builders, e.g. html, latex or linkcheck.
'''
def main(argv=sys.argv): def main(argv=sys.argv):