From 800ba38241c911f18ad0cca7a9161fecb57f40e2 Mon Sep 17 00:00:00 2001 From: Fluffy-Bean Date: Sun, 12 Mar 2023 00:04:58 +0000 Subject: [PATCH] oopsie, typo in setup file --- gallery/setup.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/gallery/setup.py b/gallery/setup.py index af342f4..edf1941 100644 --- a/gallery/setup.py +++ b/gallery/setup.py @@ -58,7 +58,7 @@ class SetupApp: Create the .env file with default values """ env_conf = { - 'FLASK_SECRETE': 'dev', + 'FLASK_SECRET': 'dev', } try: with open(os.path.join(USER_DIR, '.env'), encoding='utf-8', mode='w+') as file: @@ -96,11 +96,7 @@ class SetupApp: 'name': 'OnlyLegs', 'motto': 'Gwa Gwa', 'language': 'english' - }, - 'server': { - 'host': '0.0.0.0', - 'port': 5000 - }, + } } try: with open(os.path.join(USER_DIR, 'conf.yml'), encoding='utf-8', mode='w+') as file: