plugins/__init__.py
author etisserant
Thu, 16 Aug 2007 12:03:00 +0200
changeset 10 2aff8e8cd456
child 11 75ae893d5eed
permissions -rw-r--r--
Plugin skeleton base - python package
from os import listdir, path

l = listdir(path.split(__file__)[0])

__all__ = [name[0:-3] for name in l if name.endswith(".py") and not name.startswith("__")]