1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-09-27 15:46:53 -04:00

Merge pull request #94 from ranguli/fix-exception-typo

Fix typo on exception
This commit is contained in:
Walter A. Boring IV 2022-11-01 13:51:41 -04:00 committed by GitHub
commit c16886263f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):