diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 5770716f..5e7b9988 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -35,7 +35,7 @@ class SettingsError(Exception): class Settings(object): def __getattr__(self, attr): - if not hasattr(raw_settings, attr): + if attr.isupper() and not hasattr(raw_settings, attr): raise SettingsError(u'Setting "%s" is not set.' % attr) value = getattr(raw_settings, attr) if type(value) != bool and not value: