Skip to content

Commit

Permalink
tries fixing ceurws recreate by enabling db replace
Browse files Browse the repository at this point in the history
  • Loading branch information
tholzheim committed Apr 19, 2024
1 parent 5e6cdd8 commit 844b807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ceurws/ceur_ws.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,9 @@ def update_or_recreate(self, parser_config: ParserConfig):
progress_bar.set_description(f"{description}")
progress_bar.update()
print(f"storing recreated volume table for {len(self.volumes)} volumes ({invalid} invalid)")
self.store()
self.store(replace=True)
print(f"storing {len(paper_list)} papers")
pm.store()
pm.store(replace=True)

def loadFromIndexHtml(self, parser_config: Optional[ParserConfig] = None):
"""
Expand Down

0 comments on commit 844b807

Please sign in to comment.