Skip to content

Significantly enhance the safety of metadata manipulation #221

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed call to make_zim_file in test (type)
  • Loading branch information
rgaudin authored and benoit74 committed Dec 17, 2024
commit 1a5db4b83e007d32a68b7cb9325ef28d7381f527
2 changes: 1 addition & 1 deletion tests/zim/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_make_zim_file_no_file_on_error(tmp_path, png_image, build_data):
illustration="{png_image.name}",
title="Test ZIM",
description="A test ZIM",
redirects_file="{build_data["redirects_file"]}")
redirects_file=pathlib.Path("{build_data["redirects_file"]}"))
except Exception as exc:
print(exc)
finally:
Expand Down