From 79833a797b9aa252b464682a0b82b650e1fad8eb Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Fri, 20 Nov 2015 16:21:59 +0200 Subject: [PATCH] unknown configuration options are now treated as warnings --- motioneye/meyectl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motioneye/meyectl.py b/motioneye/meyectl.py index b785b3b..5e5ce6f 100755 --- a/motioneye/meyectl.py +++ b/motioneye/meyectl.py @@ -113,7 +113,7 @@ def load_settings(): setattr(settings, upper_name, value) else: - raise Exception('unknown configuration option: %s' % name) + logging.warn('unknown configuration option: %s' % name) if config_file: try: -- 2.39.5