瀏覽代碼

fix for omnios-r151052

neil 11 月之前
父節點
當前提交
709f1e76d3
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      acme.sh

+ 2 - 2
acme.sh

@@ -1811,11 +1811,11 @@ _date2time() {
     return
     return
   fi
   fi
   #Omnios
   #Omnios
-  if python3 -c "import datetime; print(int(datetime.datetime.strptime(\"$1\", \"%Y-%m-%d %H:%M:%S\").timestamp()))" 2>/dev/null; then
+  if python3 -c "import datetime; print(int(datetime.datetime.strptime(\"$1\", \"%Y-%m-%d %H:%M:%S\").replace(tzinfo=datetime.timezone.utc).timestamp()))" 2>/dev/null; then
     return
     return
   fi
   fi
   #Omnios
   #Omnios
-  if python3 -c "import datetime; print(int(datetime.datetime.strptime(\"$1\", \"%Y-%m-%dT%H:%M:%SZ\").timestamp()))" 2>/dev/null; then
+  if python3 -c "import datetime; print(int(datetime.datetime.strptime(\"$1\", \"%Y-%m-%dT%H:%M:%SZ\").replace(tzinfo=datetime.timezone.utc).timestamp()))" 2>/dev/null; then
     return
     return
   fi
   fi
   _err "Cannot parse _date2time $1"
   _err "Cannot parse _date2time $1"