From 9725b7c435d38c40410a3857050acbbe641dc073 Mon Sep 17 00:00:00 2001 From: Matthias Schnepf <matthias.schnepf@kit.edu> Date: Wed, 27 Jun 2018 13:11:23 +0300 Subject: [PATCH] Fix RemoteJob tag --- classes/JDLCreator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/JDLCreator.py b/classes/JDLCreator.py index b58159e..a88e854 100755 --- a/classes/JDLCreator.py +++ b/classes/JDLCreator.py @@ -455,7 +455,7 @@ class JDLCreator(object): # add remote job if self._remote_job is True: - jdl_content.append('RemoteJob = true') + jdl_content.append('+RemoteJob = True') # add requirements if len(self._cloud_site.requirements) > 0: -- GitLab