Removed long in 'int, float'

This commit is contained in:
2017-02-10 18:47:31 +01:00
parent a8756fde64
commit 1664a56bd7
2 changed files with 1 additions and 1 deletions

BIN
home.db

Binary file not shown.

View File

@@ -41,7 +41,7 @@ def getTimes():
return returnList
def convertTime(seconds):
if not isinstance(seconds, (int, long, float)):
if not isinstance(seconds, (int, float)):
return 'Null'
delta = float("%0.2f" % (time() - seconds))