Skip to content

Commit

Permalink
Fix a bug where the project configuration would not be autosaved when…
Browse files Browse the repository at this point in the history
… using the GUI. (bartfeenstra#913)
  • Loading branch information
bartfeenstra authored Nov 13, 2022
1 parent cd895f6 commit 3b779bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion betty/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def _gui(configuration_file_path: Optional[str]):
if configuration_file_path is None:
window = WelcomeWindow(app)
else:
app.project.configuration.read()
app.project.configuration.read(configuration_file_path)
window = ProjectWindow(app)
window.show()
sys.exit(qapp.exec())
Expand Down

0 comments on commit 3b779bb

Please sign in to comment.