use localize

This commit is contained in:
Jason 2020-11-05 04:15:31 +00:00
parent 095f0d549a
commit c391c50ab1

View File

@ -29,14 +29,14 @@ def unix(date_str, tz=None):
try: try:
dt = datetime.strptime(date_str, f) dt = datetime.strptime(date_str, f)
if tz: if tz:
dt = dt.replace(tzinfo=pytz.timezone(tz)) dt = pytz.timezone(tz).localize(dt)
return int(dt.timestamp()) return int(dt.timestamp())
except: except:
pass pass
try: try:
dt = datetime.strptime(date_tzfix, f) dt = datetime.strptime(date_tzfix, f)
if tz: if tz:
dt = dt.replace(tzinfo=pytz.timezone(tz)) dt = pytz.timezone(tz).localize(dt)
return int(dt.timestamp()) return int(dt.timestamp())
except: except:
pass pass
@ -223,4 +223,4 @@ if __name__ == '__main__':
print(posts[:1]) print(posts[:1])
print(site.story(posts[0])) print(site.story(posts[0]))