From cc2918377ea24792fc892a4b86fb896368164ea4 Mon Sep 17 00:00:00 2001 From: ranguli Date: Wed, 26 Oct 2022 16:46:50 -0230 Subject: [PATCH] Fix typo on exception --- aprsd/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/config.py b/aprsd/config.py index 5a2b636..93b56ea 100644 --- a/aprsd/config.py +++ b/aprsd/config.py @@ -183,7 +183,7 @@ class Config(collections.UserDict): if val == default_fail: # We have to fail and bail if the user hasn't edited # this config option. - raise exception.ConfigOptionBogusDefault(path, default_fail) + raise exception.ConfigOptionBogusDefaultException(path, default_fail) def add_config_comments(raw_yaml):