From 4eccca50a9f31f91d0367e53d5a9bf06e16abd07 Mon Sep 17 00:00:00 2001 From: venkatranabothu Date: Fri, 4 Sep 2026 08:42:43 +0000 Subject: [PATCH] Fix invalid Python syntax in app entrypoint --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1238e4d..3354649 100755 --- a/app.py +++ b/app.py @@ -12,7 +12,7 @@ sys.path.insert(0, str(BASE_DIR / 'sampleproject')) # Set Django settings module -12os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'sampleproject.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'sampleproject.settings') # Import Django utilities import django