Skip to content

Commit 96b7fc0

Browse files
committed
Fix in case of missing tss exension in xml timeserie filenames
1 parent d1c959b commit 96b7fc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lisflood/global_modules/zusatz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def _configureOutputFilename(self, filename):
230230
if not re.search("\.tss", tail):
231231
# content,sep,comment = filename.partition("-")
232232
# filename = content + "Tss" + sep + comment + ".tss"
233-
filename = tail + ".tss"
233+
filename = filename + ".tss"
234234

235235
# for stochastic add sample directory
236236
if hasattr(self._userModel, "nrSamples"):

0 commit comments

Comments
 (0)