Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #41 from sizeofbool/master
Browse files Browse the repository at this point in the history
Fix for issue #40
  • Loading branch information
Sirmentio authored Dec 29, 2018
2 parents 616c7b6 + d51e84a commit 3c482d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protontricks
Original file line number Diff line number Diff line change
Expand Up @@ -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(['{}: {}'.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',
Expand Down

0 comments on commit 3c482d1

Please sign in to comment.