From 66c911cb8784c1c6d204e22f3ec9aa4c113f9da3 Mon Sep 17 00:00:00 2001 From: Wolfgang Kaltz Date: Thu, 29 Aug 2024 08:25:27 +0200 Subject: [PATCH] Fix typo in error message --- pyramid_oereb/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyramid_oereb/core/config.py b/pyramid_oereb/core/config.py index 22b8da703d..d17b7a3973 100644 --- a/pyramid_oereb/core/config.py +++ b/pyramid_oereb/core/config.py @@ -2098,7 +2098,7 @@ def municipality_by_fosnr(fosnr): if municipality.fosnr == fosnr: return municipality raise ConfigurationError( - 'No municipalitiy with fosnr {} could be found in the configured municipalities ({}).'.format( + 'No municipality with fosnr {} could be found in the configured municipalities ({}).'.format( fosnr, Config.municipalities )