fix type error when no start time is set

This commit is contained in:
Jonathan Baecker 2019-08-16 15:56:41 +02:00
parent 13e146e19c
commit cb7cface2f

View File

@ -297,7 +297,7 @@ def is_float(value):
try:
float(value)
return True
except ValueError:
except (ValueError, TypeError):
return False