1
0
Fork 0
mirror of https://github.com/Athemis/PyDSF.git synced 2025-04-05 14:46:03 +00:00

Fix error while processing files

This commit is contained in:
Alexander Minges 2015-07-08 12:54:37 +02:00
parent 3aa45696dc
commit 750a9b7157

View file

@ -431,7 +431,7 @@ class Plate:
if read > 0: if read > 0:
try: try:
temp[read - 1] = row[read] temp[read - 1] = row[read]
except IndexError: except (IndexError, ValueError):
temp[read - 1] = 0.0 temp[read - 1] = 0.0
elif read == 0: elif read == 0:
self.wells[i].name = row[read] self.wells[i].name = row[read]