From f2575596ce3eb9ec2e81c397179d89fb1a014c41 Mon Sep 17 00:00:00 2001 From: tef Date: Mon, 10 Jan 2022 19:29:32 -0500 Subject: [PATCH] workspace --- config_examples/Strategy002.py | 2 +- config_examples/Strategy003.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config_examples/Strategy002.py b/config_examples/Strategy002.py index 59ff8b9c7..2fc5cfce4 100644 --- a/config_examples/Strategy002.py +++ b/config_examples/Strategy002.py @@ -162,6 +162,6 @@ class Strategy002(IStrategy): """ mode = "test" coin = pair.split("/")[0] - subprocess.call("python3 /root/workspace2/execution/launcher.py " + mode + " " + coin, shell=True) + subprocess.call("python3 /root/workspace/execution/launcher.py " + mode + " " + coin, shell=True) return True diff --git a/config_examples/Strategy003.py b/config_examples/Strategy003.py index faaa7512b..3856e9a50 100644 --- a/config_examples/Strategy003.py +++ b/config_examples/Strategy003.py @@ -175,5 +175,5 @@ class Strategy003(IStrategy): """ mode = "test" coin = pair.split("/")[0] - subprocess.call("python3 /root/workspace3/execution/launcher.py " + mode + " " + coin, shell=True) + subprocess.call("python3 /root/workspace/execution/launcher.py " + mode + " " + coin, shell=True) return True \ No newline at end of file