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.
master
endorphant 2016-05-22 00:53:21 -04:00
parent f98513a079
commit 8041ece179
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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