From ea7117545d0a481bcd2aa0de11cf7bff6c303e77 Mon Sep 17 00:00:00 2001 From: Jaikinator Date: Wed, 24 Jan 2024 16:18:42 +0100 Subject: [PATCH] fixed wrong dict entry --- scraibe/app/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraibe/app/utils.py b/scraibe/app/utils.py index 35d2f8e..c9693ef 100644 --- a/scraibe/app/utils.py +++ b/scraibe/app/utils.py @@ -137,7 +137,7 @@ class AppConfig(ConfigLoader): if launch_options.get('auth').pop('auth_enabled'): self.config['launch']['auth'] = (launch_options.get('auth').pop('auth_username'), - launch_options.get('auth').pop('password')) + launch_options.get('auth').pop('auth_password')) else: self.config['launch']['auth'] = None