Skip to content

Commit

Permalink
xml
Browse files Browse the repository at this point in the history
  • Loading branch information
alfoa committed Oct 23, 2024
1 parent ff47a1a commit 39c5a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ravenframework/OutStreams/PrintInterfaces/FilePrint.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run(self):
if self.options['type'] == 'csv':
filename = dictOptions['filenameroot']
rlzIndex = self.indexPrinted.get(filename,0)
if rlzIndex >= len(self.sourceData[index]):
if rlzIndex and rlzIndex >= len(self.sourceData[index]):
continue
dictOptions['firstIndex'] = rlzIndex
# clusterLabel lets the user print a point set as if it were a history, with input decided by clusterLabel
Expand Down

0 comments on commit 39c5a39

Please sign in to comment.