Fix for #2980 (invalid seriesindex causes no longer a crash)

pull/2986/head
Ozzie Isaacs 3 months ago
parent 898e76fc37
commit b9c329535d

@ -124,7 +124,7 @@ def formatseriesindex_filter(series_index):
return int(series_index)
else:
return series_index
except ValueError:
except (ValueError, TypeError):
return series_index
return 0

Loading…
Cancel
Save