diff --git a/home.db b/home.db index f684c8a..480bc3f 100644 Binary files a/home.db and b/home.db differ diff --git a/macLookup.py b/macLookup.py index 971bcd6..01c4609 100755 --- a/macLookup.py +++ b/macLookup.py @@ -71,14 +71,15 @@ def updateTimes(): conn.commit() conn.close() - return ("Updated following clients: " + online) + return (online) if __name__ == '__main__': if argv[-1] == 'add': - pprint(updateTimes()) + print("Updated following clients:", updateTimes()) elif argv[-1] == 'get': pprint(getTimes()) else: print("Add args 'add' or 'get'") +