Skip to content

Commit

Permalink
Fix incorrect method in ZipArchiver
Browse files Browse the repository at this point in the history
  • Loading branch information
bpepple committed Jun 27, 2022
1 parent cc99d98 commit 200f139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion darkseid/comicarchive.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def write_file(self, archive_file: str, data: str) -> bool:
# another solution can be found
files = self.get_filename_list()
if archive_file in files:
self.rebuild([archive_file])
self._rebuild_zipfile([archive_file])

try:
# now just add the archive file as a new one
Expand Down

0 comments on commit 200f139

Please sign in to comment.