timezone display

in the live feels feed, timestamp now indicates what deflection from UTC
the time reads. this is based on the local time zone set for the user
who caused the live feed to update.
This commit is contained in:
endorphant 2016-05-22 00:53:21 -04:00
rodzic f98513a079
commit 8041ece179
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -643,7 +643,7 @@ def www_neighbors(users):
if lastfile:
last = os.path.getctime(lastfile)
timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last))
timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last)) + time.strftime(" (%z)")
else:
timestamp = ""
last = 0

Wyświetl plik

@ -641,7 +641,7 @@ def www_neighbors(users):
if lastfile:
last = os.path.getctime(lastfile)
timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last))
timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last)) + time.strftime(" (%z)")
else:
timestamp = ""
last = 0