From 6adef625fd72505857200abd90ec36c1c86ac4d6 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Thu, 8 Feb 2018 14:13:05 -0600 Subject: [PATCH] proton: Complain if verb is missing --- proton | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proton b/proton index fd581f3f..08a422db 100755 --- a/proton +++ b/proton @@ -182,7 +182,7 @@ elif sys.argv[1] == "translatepath": path = subprocess.check_output([wine_path, "winepath", "-w", sys.argv[2]], env=env, stderr=open("/dev/null", "w")) stdout.write(path) else: - #??? + stdout.write("Need a verb.") sys.exit(1) sys.exit(0)