the missing plugin
[enigma2.git] / mytest.py
index 9d2998ba47440387945da48ac56d7ad69ed6e504..522b9b395e2d96c26c18c511cc5613089f232c69 100644 (file)
--- a/mytest.py
+++ b/mytest.py
@@ -271,14 +271,19 @@ def runScreenTest():
        
        session.nav = Navigation()
        
-       screensToRun = wizardManager.getWizards()
+       screensToRun = [ ]
+       
        for p in plugins.getPlugins(PluginDescriptor.WHERE_WIZARD):
                screensToRun.append(p.__call__)
+       
+       screensToRun += wizardManager.getWizards()
+       
        screensToRun.append(Screens.InfoBar.InfoBar)
 
        def runNextScreen(session, screensToRun, *result):
                if result:
                        quitMainloop(*result)
+                       return
        
                screen = screensToRun[0]