Verified Commit 1b27ef63 authored by Jakob Moser's avatar Jakob Moser
Browse files

Rethrow exception in admin as well

parent 0741e64f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -29,6 +29,8 @@ def run_app() -> None:
    try:
        db.open(paths.db_file)
        app.run()
    except Exception as e:
        raise e
    finally:
        db.close()