summaryrefslogtreecommitdiff
path: root/modules/config.py
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2025-01-29 18:59:40 +0100
committerBotond Hende <nettingman@gmail.com>2025-01-29 18:59:40 +0100
commit2b4423d3d5f325611e147b44d949793ae3fdbb76 (patch)
tree8b1e2bc943eed167cec8fce1f4f201f3096e5fa4 /modules/config.py
parent7048b94713abe328a376fd76458bf72025c12dfe (diff)
all kinds of random fixes to bugs that somehow never appeared until nowHEADmaster
Diffstat (limited to 'modules/config.py')
-rw-r--r--modules/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/config.py b/modules/config.py
index 1a5865b..c5e8d1d 100644
--- a/modules/config.py
+++ b/modules/config.py
@@ -40,7 +40,7 @@ class Config:
def validate(self) -> None:
if self.input_mode not in self.INPUT_MODES:
- sys.exit(f"Invalid input_mode '{self.input_mode}', valid options: {", ".join(self.INPUT_MODES)}")
+ sys.exit(f"Invalid input_mode '{self.input_mode}', valid options: {', '.join(self.INPUT_MODES)}")
def load_config() -> Config:
config = Config()