Don't use __all__ in the Wizard code
[bertos.git] / wizard / plugins / __init__.py
index 0ac9a25a937a8d2c86ad553ffc04ef1229008ac1..21887ccbd7ba7d8b482aaad6ca224d35914280fe 100644 (file)
@@ -8,18 +8,8 @@
 #
 # Author: Lorenzo Berni <duplo@develer.com>
 #
+import codelite
 
-import os
-import glob
+__all__ = ["codelite"]
 
-_modules = glob.glob(os.path.dirname(os.path.abspath(__file__)) + os.sep + "*.py")
-_modules = [os.path.basename(module) for module in _modules]
-__all__ = []
-for module in _modules:
-    if module != "__init__.py":
-        __all__.append(module.replace(".py", ""))
-
-del os
-del glob
-del _modules
-del module
+plugin_list = ["codelite"]