소스 검색

Avoid redundant loading of disabled modules.

tags/v0.3
Ben Kurtovic 9 년 전
부모
커밋
7d34781013
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      earwigbot/managers.py

+ 4
- 4
earwigbot/managers.py 파일 보기

@@ -133,14 +133,14 @@ class _ResourceManager(object):
if name.startswith("_") or name.startswith("."):
continue
modname = sub("\.pyc?$", "", name) # Remove extension
if modname in processed:
continue
processed.append(modname)
if self._is_disabled(modname):
log = "Skipping disabled module {0}".format(modname)
self.logger.debug(log)
processed.append(modname)
continue
if modname not in processed:
self._load_module(modname, dir)
processed.append(modname)
self._load_module(modname, dir)

def _unload_resources(self):
"""Unload all resources, calling their unload hooks in the process."""


불러오는 중...
취소
저장