8000 Fix passing kwarg to wrong task function · python-doc-tw/pydoc_autobuild@0068a5e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0068a5e

Browse files
committed
Fix passing kwarg to wrong task function
Should deploy before sleep
1 parent db05aa8 commit 0068a5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc_tasks/tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def update_one_page(page):
102102
def full_update_and_commit():
103103
processes = OrderedDict()
104104
processes['tx_pull'] = tx_pull(page=None)
105-
processes['sphinx_intl_build'] = sphinx_intl_build(rebuild_all=True)
106-
processes['sphinx_build_html'] = sphinx_build_html()
105+
processes['sphinx_intl_build'] = sphinx_intl_build()
106+
processes['sphinx_build_html'] = sphinx_build_html(rebuild_all=True)
107107
processes.update(git_add_commit_push())
108108
return processes

0 commit comments

Comments
 (0)
0