浏览代码

NOW() wasn't in our timezone.

root 5 年之前
父节点
当前提交
38d4cb8236
共有 1 个文件被更改,包括 1 次插入1 次删除
  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))