Changed the name of bazzinga to inga and change a little on the return type from macLookup.

This commit is contained in:
2017-02-10 23:34:41 +01:00
parent 1664a56bd7
commit 5a9af6ca8d
2 changed files with 1 additions and 1 deletions

BIN
home.db

Binary file not shown.

View File

@@ -44,7 +44,7 @@ def convertTime(seconds):
if not isinstance(seconds, (int, float)): if not isinstance(seconds, (int, float)):
return 'Null' return 'Null'
delta = float("%0.2f" % (time() - seconds)) delta = int(time() - seconds)
if delta >= 86400: if delta >= 86400:
return str(delta//86400) + ' days' return str(delta//86400) + ' days'
elif delta >= 3600: elif delta >= 3600: