1

Specify Never

This commit is contained in:
Evan Pratten 2023-10-12 19:14:43 -04:00
parent 84566fc9ff
commit bcdc5a9238

View File

@ -99,7 +99,7 @@ def main() -> int:
# Get the time of the last handshake
last_handshake = datetime.fromtimestamp(int(values[4]))
time_ago = timeago.format(last_handshake, datetime.now())
time_ago = timeago.format(last_handshake, datetime.now()) if values[4] != "0" else "Never"
# Print the client's name and the time of the last handshake
print(f"{name}: {time_ago}")