Skip to content

Commit 11d3c95

Browse files
committed
Closes #14
1 parent 91dcd30 commit 11d3c95

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pysolo_anal.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -220,12 +220,12 @@ def ExportDefaultVariable(self, fpath, var_name, export_format):
220220
ax_t, s5_t, s30_t = cSEL.filterbyStatus(ds,de,fs,fe,t0,t1, status=5, use_dropout=use_dropout, min_alive=min_alive, max_alive=max_alive) #get the S5 of the currently selected item
221221

222222
if n_sel == 0:
223-
v[0] = s5_t
224-
v[1] = ax_t
223+
v[0] = ax_t
224+
v[1] = s5_t
225225
v[2] = s30_t
226226
else:
227-
v[0] = concatenate ((v[0], s5_t))
228-
v[1] = concatenate ((v[1], ax_t))
227+
v[0] = concatenate ((v[1], ax_t))
228+
v[1] = concatenate ((v[0], s5_t))
229229
v[2] = concatenate ((v[2], s30_t))
230230

231231
#Export now

0 commit comments

Comments
 (0)