diff --git a/home.db b/home.db index 6752e6c..321806c 100644 Binary files a/home.db and b/home.db differ diff --git a/macLookup.py b/macLookup.py index 11d463e..e7e9f01 100755 --- a/macLookup.py +++ b/macLookup.py @@ -44,7 +44,7 @@ def convertTime(seconds): if not isinstance(seconds, (int, float)): return 'Null' - delta = float("%0.2f" % (time() - seconds)) + delta = int(time() - seconds) if delta >= 86400: return str(delta//86400) + ' days' elif delta >= 3600: