Skip to content

Commit 32ba686

Browse files
Update command setters to use different separator in makeList (#1519)
Co-authored-by: MarkusFrankATcernch <[email protected]>
1 parent a9d52c8 commit 32ba686

File tree

1 file changed

+5
-5
lines changed
  • DDG4/python/DDSim/Helper

1 file changed

+5
-5
lines changed

DDG4/python/DDSim/Helper/UI.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def commandsConfigure(self):
3838

3939
@commandsConfigure.setter
4040
def commandsConfigure(self, val):
41-
self._commandsConfigure = self.makeList(val)
41+
self._commandsConfigure = self.makeList(val, sep=";")
4242

4343
@property
4444
def commandsInitialize(self):
@@ -47,7 +47,7 @@ def commandsInitialize(self):
4747

4848
@commandsInitialize.setter
4949
def commandsInitialize(self, val):
50-
self._commandsInitialize = self.makeList(val)
50+
self._commandsInitialize = self.makeList(val, sep=";")
5151

5252
@property
5353
def commandsPostRun(self):
@@ -56,7 +56,7 @@ def commandsPostRun(self):
5656

5757
@commandsPostRun.setter
5858
def commandsPostRun(self, val):
59-
self._commandsPostRun = self.makeList(val)
59+
self._commandsPostRun = self.makeList(val, sep=";")
6060

6161
@property
6262
def commandsPreRun(self):
@@ -65,7 +65,7 @@ def commandsPreRun(self):
6565

6666
@commandsPreRun.setter
6767
def commandsPreRun(self, val):
68-
self._commandsPreRun = self.makeList(val)
68+
self._commandsPreRun = self.makeList(val, sep=";")
6969

7070
@property
7171
def commandsTerminate(self):
@@ -74,4 +74,4 @@ def commandsTerminate(self):
7474

7575
@commandsTerminate.setter
7676
def commandsTerminate(self, val):
77-
self._commandsTerminate = self.makeList(val)
77+
self._commandsTerminate = self.makeList(val, sep=";")

0 commit comments

Comments
 (0)