使用Jio GigaFiber Connection时,我的Godaddy ftp无法通过filezilla连接。但是当我只是尝试通过共享我的移动互联网进行连接时 它正常连接,再次使用Jio GigaFiber重试后,它只是无法连接。
以下是我得到的回复,我注意到的一件事是-在第3行中显示 (本地时间现在是'08:33'),当时我的PC上的实际时间是9.01pm,即延迟了大约30分钟。我尝试将PC时间更正为与响应中所显示的时间相同,但再次无法连接
for i, (date_section,
regex_section) in enumerate(zip(split_date, regex_arr)):
compiled_regex = re.compile(regex_section)
is_date = compiled_regex.match(date_section)
if not is_date:
if len(split_date[0]) != 4:
raise SyntaxError(
f"Invalid Syntax: The date inputed ({date}) should be in YYYY-MM-DD format"
)
date_section = date_section.zfill(2)
split_date[i] = date_section
is_date = compiled_regex.match(date_section)
if not is_date:
raise SyntaxError(
f"Invalid Syntax: The date inputed ({date}) should be in YYYY-MM-DD format"
)