From eb7d00c72f3a838ef89e316f71d4b26babda28d1 Mon Sep 17 00:00:00 2001 From: samerbam Date: Thu, 24 Aug 2023 23:26:52 -0400 Subject: [PATCH] syntax fix --- application/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/main.py b/application/main.py index 2bd0040..55a21e4 100644 --- a/application/main.py +++ b/application/main.py @@ -72,7 +72,7 @@ def first_run(): with open('.firsttimeruncheck', 'x') as f: f.write("") return {"status": "First Run"} - except as e: + except Exception as e: print(e) return {"status": "Not First Run"}