diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-03-21 20:43:26 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-04-09 20:47:32 (GMT) |
commit | 23197f27e50f9f66d9f7263fbac5c38855731922 (patch) | |
tree | c225812f4de5dfec08bbe0847aa25ca6050c00ee /site_scons/epydoc.py | |
parent | 7c466f714b9892d953ff2b91c7b0214180417000 (diff) | |
download | SCons-23197f27e50f9f66d9f7263fbac5c38855731922.zip SCons-23197f27e50f9f66d9f7263fbac5c38855731922.tar.gz SCons-23197f27e50f9f66d9f7263fbac5c38855731922.tar.bz2 |
First pass of refactor. Moved command line argument processing into site_scons/BuildCommandLine.py. Sorted out all changes caused by that.
Diffstat (limited to 'site_scons/epydoc.py')
-rw-r--r-- | site_scons/epydoc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site_scons/epydoc.py b/site_scons/epydoc.py index 149e9dc..da74d9c 100644 --- a/site_scons/epydoc.py +++ b/site_scons/epydoc.py @@ -28,7 +28,6 @@ from SCons.Script import Delete, Touch, WhereIs epydoc_cli = WhereIs('epydoc') - if not epydoc_cli: try: import epydoc @@ -92,7 +91,8 @@ if not epydoc_cli: Touch('$TARGET'), ] -else: # epydoc_cli is found +else: + # epydoc_cli is found epydoc_commands = [ Delete('$OUTDIR'), '$EPYDOC $EPYDOCFLAGS --debug --output $OUTDIR --docformat=restructuredText --name SCons --url http://www.scons.org/ $SOURCES', |