Don't use __all__ in the Wizard code
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Apr 2009 07:43:29 +0000 (07:43 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Apr 2009 07:43:29 +0000 (07:43 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2642 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BOutputPage.py
wizard/plugins/__init__.py

index 72c32f5c5e634e2422826a13fe8a08d6f67add07..e4ba01621d175c11007dcfcac25ddc441b4fc0bb 100644 (file)
@@ -85,7 +85,7 @@ class BOutputPage(BWizardPage):
         """
         Returns the list of the available plugins.
         """
-        return plugins.__all__
+        return plugins.plugin_list
     
     def createNewOutput(self, name, description, checked=True, enabled=True):
         """
index bf4d738b7397fc658a5ed2352742597ab311dd1b..21887ccbd7ba7d8b482aaad6ca224d35914280fe 100644 (file)
@@ -11,3 +11,5 @@
 import codelite
 
 __all__ = ["codelite"]
+
+plugin_list = ["codelite"]