Skip to content

Commit

Permalink
have to pass the function name to run_sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacdontjelindell committed Aug 8, 2013
1 parent aae304c commit 606733e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions newproject_copy_me/pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
options(
sphinx = Bunch(docroot=".",),

build = Bunch( builddir="../static/"+project_name,
sourcedir=".",
outdir="../static/"+project_name,
confdir=".",
template_args={'course_id':project_name,
'login_required':'false',
'appname':master_app,
'loglevel':10,
'course_url':master_url }

)
build = Bunch(
builddir="../static/"+project_name,
sourcedir=".",
outdir="../static/"+project_name,
confdir=".",
template_args={'course_id':project_name,
'login_required':'false',
'appname':master_app,
'loglevel':10,
'course_url':master_url }
)
)

@task
Expand All @@ -39,5 +39,5 @@ def build(options):
options['force_all'] = True
options['freshenv'] = True

paverutils.run_sphinx(options,project_name)
paverutils.run_sphinx(options,'build')

0 comments on commit 606733e

Please sign in to comment.