We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84c253 commit 0ad0453Copy full SHA for 0ad0453
server/taco_server.py
@@ -22,7 +22,8 @@ def do_POST(self):
22
if len(cmd) > 1024:
23
raise Exception
24
25
- prettyCmd = "taco \"" + cmd.replace(" ", "\" ", 1)
+ prettyCmd = "taco " + cmd
26
+ cmd = cmd.replace("\"", "")
27
28
logFile = "/home/ubuntu/success.log"
29
tacoPath = "/home/ubuntu/taco/build/bin/taco"
0 commit comments