specify args

This commit is contained in:
Sarah 2022-04-03 15:50:20 +01:00
parent c5445fb8e0
commit 46df8c7168

View File

@ -55,10 +55,10 @@ def update_wiki(token_id, token_secret, update_csv=False, update_films_by_year=T
with IncrementalBar('Updating pages', max=update_page_count, check_tty=False) as bar: with IncrementalBar('Updating pages', max=update_page_count, check_tty=False) as bar:
if update_films_by_year: if update_films_by_year:
Bookstack.update_page(VCinemaUtils.JACKNET_WIKI_URL, token_id, token_secret, FILMS_BY_YEAR_PAGE_ID, films_by_year_page) Bookstack.update_page(VCinemaUtils.JACKNET_WIKI_URL, token_id, token_secret, FILMS_BY_YEAR_PAGE_ID, markdown=films_by_year_page)
bar.next() bar.next()
if update_films_by_country: if update_films_by_country:
Bookstack.update_page(VCinemaUtils.JACKNET_WIKI_URL, token_id, token_secret, FILMS_BY_COUNTRY_PAGE_ID, films_by_country_page) Bookstack.update_page(VCinemaUtils.JACKNET_WIKI_URL, token_id, token_secret, FILMS_BY_COUNTRY_PAGE_ID, html=films_by_country_page)
bar.next() bar.next()
bar.finish() bar.finish()