1
0
Fork 0
mirror of https://github.com/Athemis/PyDSF.git synced 2025-04-04 22:36:02 +00:00

Be more precise in which Exception to catch

This commit is contained in:
Alexander Minges 2015-07-08 02:24:07 +02:00
parent fb75cb0864
commit 3aa45696dc

View file

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