diff --git a/couchpotato/core/loader.py b/couchpotato/core/loader.py index ceaa9efa..0f49700a 100644 --- a/couchpotato/core/loader.py +++ b/couchpotato/core/loader.py @@ -43,6 +43,9 @@ class Loader(object): for module_name, plugin in sorted(self.modules[priority].iteritems()): # Load module try: + if plugin.get('name')[:2] == '__': + continue + m = getattr(self.loadModule(module_name), plugin.get('name')) log.info('Loading %s: %s', (plugin['type'], plugin['name']))