1
0
Fork 0
mirror of synced 2024-06-28 19:20:34 +12:00

Corrected syntax error

This commit is contained in:
Phxntxm 2016-08-19 18:05:25 -05:00
parent d70f9d5a76
commit 70a8682a11

View file

@ -140,7 +140,7 @@ class Steam:
last_seen_date = pendulum.from_timestamp(data.get('lastlogoff'))
# We want the difference between now and then, to see when they were actually last Online
# Instead of printing the exact time they were online
last_seen_delta = pendulum.utcnow - last_seen_date
last_seen_delta = pendulum.utcnow() - last_seen_date
fmt = {"URL": data.get('profileurl'),
"Display Name": data.get('personaname'),
"Online status": status_map[data.get('personastate')],