Skip to content

Commit 18978aa

Browse files
committed
fix http_client param
1 parent 59035e0 commit 18978aa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

bookstack_file_exporter/archiver/asset_archiver.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ class AssetArchiver:
112112
113113
Args:
114114
:urls: <Dict[str, str]> = api urls for images and attachments
115-
:verify_ssl: <bool> = verify ssl for api requests
116115
:http_client: <HttpHelper> = http helper functions with config from user inputs
117116
118117
Returns:

bookstack_file_exporter/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def exporter(config: ConfigNode):
4949
sys.exit(0)
5050
log.info("Beginning archive")
5151
## start archive ##
52-
archive: Archiver = Archiver(config)
52+
archive: Archiver = Archiver(config, http_client)
5353

5454
# create export directory if not exists
5555
archive.create_export_dir()

0 commit comments

Comments
 (0)