diff --git a/gui/__main__.py b/gui/__main__.py index 9c602eb..79a77ac 100644 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -12,7 +12,7 @@ import sys def recovery_dialog(custom_error, db_version_you_have): """This ends the app by forcing them to delete the database, move it, or just quit.""" - from v2.ui.popups.Database_version import show_recovery_dialog + from gui.v2.ui.popups.Database_version import show_recovery_dialog choice = show_recovery_dialog({"message": custom_error, "db_version": db_version_you_have, "status": "version_mismatch"}) logger.info(f"[DB MANAGEMENT] From the database error options, the user picked {choice}")