Skip to content

Commit

Permalink
Fixed time.time() cause it looks bad in db
Browse files Browse the repository at this point in the history
  • Loading branch information
Tadeusz Magura-Witkowski committed Aug 9, 2013
1 parent e9d1a52 commit f526c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def __init__(self):
def update_data(self, users_now):
users_now_ids = set(users_now.keys())

current_timestamp = time.time()
current_timestamp = int(time.time())

new_users = users_now_ids - self._lastUsersSet
for user_id in new_users:
Expand Down

0 comments on commit f526c48

Please sign in to comment.