Procházet zdrojové kódy

NOW() wasn't in our timezone.

root před 5 roky
rodič
revize
38d4cb8236
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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))