Subtle bugfixes cfr. Py2 to Py3

This commit is contained in:
rparedis 2024-05-23 10:54:52 +02:00
parent 68a247654d
commit bf8ef00b05
3 changed files with 5 additions and 5 deletions

View file

@ -73,7 +73,7 @@ class AsynchronousComboGenerator(object):
raise DEVSException(
"Inproperly formatted input in file: %s" % event)
self.next_scheduled = float(event[0])
self.file_event = event[1][:-1]
self.file_event = event[1].rstrip()
def getNextTime(self):
"""