Skip to content

Commit

Permalink
fix functionality of displaying the website after export
Browse files Browse the repository at this point in the history
  • Loading branch information
plandes committed Aug 23, 2023
1 parent a21ac39 commit acfea9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/zensols/zotsite/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _show(self, index_file: Path):
harness: CliHarness = ApplicationFactory.create_harness()
app: Application = harness.get_instance('config')
logger.info(f'showing {index_file}')
app.show(index_file)
app.show(str(index_file))

def export(self, output_dir: Path = None, show: bool = False):
"""Generate and export the Zotero website.
Expand Down

0 comments on commit acfea9c

Please sign in to comment.