From 37eb221d9549e8e7004d0daf70e02b9a656b0e29 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Mon, 26 Feb 2018 08:44:11 -0600 Subject: [PATCH] proton: Fix translatepath verbs --- proton | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proton b/proton index 368118c77..a43bcf658 100755 --- a/proton +++ b/proton @@ -296,11 +296,11 @@ if sys.argv[1] == "run": elif sys.argv[1] == "getcompatpath": #linux -> windows path path = subprocess.check_output([wine_path, "winepath", "-w", sys.argv[2]], env=env, stderr=open("/dev/null", "w")) - stdout.write(path) + sys.stdout.write(path) elif sys.argv[1] == "getnativepath": #windows -> linux path path = subprocess.check_output([wine_path, "winepath", sys.argv[2]], env=env, stderr=open("/dev/null", "w")) - stdout.write(path) + sys.stdout.write(path) else: log("Need a verb.") sys.exit(1)