From 254b07d781616da591f70ed0e833cf73d3a96bc8 Mon Sep 17 00:00:00 2001 From: Philip Trauner Date: Thu, 7 Apr 2016 11:57:13 +0200 Subject: [PATCH] Fixed run command --- Wallaby/Wallaby.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wallaby/Wallaby.py b/Wallaby/Wallaby.py index 541774a..20e4884 100644 --- a/Wallaby/Wallaby.py +++ b/Wallaby/Wallaby.py @@ -40,7 +40,7 @@ class WallabyControl(Routing.ClientRoute): command = ["gstdbuf", "-i0", "-o0", "-e0"] else: command = ["stdbuf", "-i0", "-o0", "-e0"] - command.append("./%s%s/botball_user_program" % (handler.sync.folder, program)) + command.append("%s%s/botball_user_program" % (handler.sync.folder, program)) process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) # Poll process for new output until finished