plugins/__init__.py
author lbessard
Mon, 20 Aug 2007 14:28:08 +0200
changeset 11 75ae893d5eed
parent 10 2aff8e8cd456
child 12 a1f9e514f708
permissions -rw-r--r--
Adding plugin support in Beremiz
from os import listdir, path

base_path = path.split(__file__)[0]

__all__ = [name for name in listdir(base_path) if path.isdir(path.join(base_path, name)) and name != "CVS" or name.endswith(".py") and not name.startswith("__")]

for name in __all__:
    __import__(name, globals(), locals(), [])