From eea96b16440cf536da7cecccdf23e58e41b8b505 Mon Sep 17 00:00:00 2001 From: sizeofbool Date: Fri, 7 Dec 2018 19:28:24 +0500 Subject: [PATCH 1/2] Fixed typo --- protontricks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protontricks b/protontricks index ef4f265..4a42494 100755 --- a/protontricks +++ b/protontricks @@ -361,7 +361,7 @@ if __name__ == "__main__": proton_app.install_path, "dist", "bin", "wineserver") if sys.argv[1].lower() == "gui": - combo_values = "|".join([f'{app.name}: {app.appid}' for app in steam_apps]) + combo_values = "|".join(['{app.name}: {app.appid}' for app in steam_apps]) try: choice = subprocess.check_output(['zenity', '--forms', '--text=Steam Game Library', '--title=Choose Game', '--add-combo', 'Pick a library game', From d51e84a7319e1132c7a8060e4807e2ea3c256082 Mon Sep 17 00:00:00 2001 From: sizeofbool Date: Fri, 7 Dec 2018 22:00:57 +0500 Subject: [PATCH 2/2] Fix for issue #40 --- protontricks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protontricks b/protontricks index 4a42494..a21c938 100755 --- a/protontricks +++ b/protontricks @@ -361,7 +361,7 @@ if __name__ == "__main__": proton_app.install_path, "dist", "bin", "wineserver") if sys.argv[1].lower() == "gui": - combo_values = "|".join(['{app.name}: {app.appid}' for app in steam_apps]) + combo_values = "|".join(['{}: {}'.format(app.name, app.appid) for app in steam_apps]) try: choice = subprocess.check_output(['zenity', '--forms', '--text=Steam Game Library', '--title=Choose Game', '--add-combo', 'Pick a library game',