mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 14:44:29 -04:00
update instead of append
This commit is contained in:
parent
d9fd1e3811
commit
8b0ff2dfee
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ class AddView(UserPassesTestMixin, FormView):
|
||||||
"out_dir": OUTPUT_DIR,
|
"out_dir": OUTPUT_DIR,
|
||||||
}
|
}
|
||||||
if extractors:
|
if extractors:
|
||||||
input_kwargs.append("extractors": extractors)
|
input_kwargs.update({"extractors": extractors})
|
||||||
add_stdout = StringIO()
|
add_stdout = StringIO()
|
||||||
with redirect_stdout(add_stdout):
|
with redirect_stdout(add_stdout):
|
||||||
add(**input_kwargs)
|
add(**input_kwargs)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue