From 9de414157735ab9809040e8e9628bd8fb062e70e Mon Sep 17 00:00:00 2001
From: Bing Gong <b.gong@fz-juelich.de>
Date: Mon, 28 Feb 2022 19:19:55 +0100
Subject: [PATCH] Fix the problems with runscript generator

---
 .../utils/runscript_generator/config_utils.py               | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/video_prediction_tools/utils/runscript_generator/config_utils.py b/video_prediction_tools/utils/runscript_generator/config_utils.py
index 4740f81e..02882f88 100755
--- a/video_prediction_tools/utils/runscript_generator/config_utils.py
+++ b/video_prediction_tools/utils/runscript_generator/config_utils.py
@@ -31,10 +31,10 @@ class Config_runscript_base:
         self.VIRT_ENV_NAME = venv_name
         # runscript related attributes
         if lhpc:
-            self.runscript_dir = "../JSC_scripts"
-        else:
             self.runscript_dir = "../HPC_scripts"
-
+        else:
+            self.runscript_dir = "../no_HPC_scripts"
+        
         self.long_name_wrk_step = None
         self.rscrpt_tmpl_prefix = None
         self.runscript_template = None
-- 
GitLab