From a218722ed79cdbdb41a2ec92d5619dfd1e322b78 Mon Sep 17 00:00:00 2001 From: Michael Kaiser Date: Sun, 18 Feb 2024 13:26:22 +0100 Subject: [PATCH] updating the run script for the user frontend --- codeGrader/scripts/cgAdminFrontend.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codeGrader/scripts/cgAdminFrontend.py b/codeGrader/scripts/cgAdminFrontend.py index 0fb2541..42b2bc9 100644 --- a/codeGrader/scripts/cgAdminFrontend.py +++ b/codeGrader/scripts/cgAdminFrontend.py @@ -22,7 +22,6 @@ """ import sys -from codeGrader.frontend.admin import admin_frontend import os @@ -32,7 +31,7 @@ def main(): @return: """ os.chdir("/usr/local/lib/python3.11/dist-packages/codeGrader/frontend/admin") - admin_frontend() + os.system("python3 app.py") if __name__ == '__main__':