diff --git a/plexpy/config.py b/plexpy/config.py index 7c1651a4..6f2926d9 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -537,7 +537,7 @@ class Config(object): Returns something from the ini unless it is a real property of the configuration object or is not all caps. """ - if not re.match(r'[A-Z_]+$', name): + if not re.match(r'[A-Z0-9_]+$', name): return super(Config, self).__getattr__(name) else: return self.check_setting(name)