X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/aaa0b27561726d84cc7c3fcfd16302c87dc628d7..467c84630b284769e555be54f2d47eecc36ed7df:/gui.py?ds=sidebyside diff --git a/gui.py b/gui.py index 560cb01..c069761 100644 --- a/gui.py +++ b/gui.py @@ -103,7 +103,7 @@ def getFrontend(name = None): # frontend not found or not available raise Exception("Frontend %s not found or not available" % name) # auto-detect - for frontend in list(frontends.values()): + for frontend in frontends.values(): if frontend.isAvailable(): return frontend() # call constructor raise Exception("No frontend is available - this should not happen")