Quellcode durchsuchen

NOW() wasn't in our timezone.

root vor 5 Jahren
Ursprung
Commit
38d4cb8236
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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))