plugins/__init__.py
changeset 12 a1f9e514f708
parent 11 75ae893d5eed
child 13 f1f0edbeb313
--- a/plugins/__init__.py	Mon Aug 20 14:28:08 2007 +0200
+++ b/plugins/__init__.py	Tue Aug 21 17:21:26 2007 +0200
@@ -1,8 +1,11 @@
 from os import listdir, path
+from xmlclass import DeclareXSDClass
+from __templates import *
 
-base_path = path.split(__file__)[0]
+_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("__")]
+__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(), [])
+