diff --git a/test/try_plugin.py b/test/try_plugin.py index a146d4d2..b9b6368a 100644 --- a/test/try_plugin.py +++ b/test/try_plugin.py @@ -416,4 +416,10 @@ def test_plugin(): if __name__ == '__main__': - try_plugin_screens_load() + try: + try_plugin_screens_load() + except TypeError as ex: + print('Error %s, try second time' % str(ex)) + from time import sleep + sleep(10) + try_plugin_screens_load()