Forráskód Böngészése

NOW() wasn't in our timezone.

root 5 éve
szülő
commit
38d4cb8236
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      tcp-proxy.py

+ 1 - 1
tcp-proxy.py

@@ -185,7 +185,7 @@ class ProxyAction:
         text = chunk.decode("utf-8", "ignore").upper()
 
         if text == "T":
-            now = pendulum.now()
+            now = pendulum.now('America/New_York')
             self.send("\r\nThe time is: {0}.\r\n".format(now.to_rss_string()))
         if text == "Q":
             self.send("\r\nReturning to TWGS.\r\n{0}".format(self.prompt))