X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/9c9906a50a95ea5a6d09cab7838becbe89dc44a6..14aaede5b451a5b903dde99202925eb4a016c231:/gui.py 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")