forked from tanner/qotnews
use replace.
This commit is contained in:
parent
c21c71667e
commit
095f0d549a
|
@ -29,14 +29,14 @@ def unix(date_str, tz=None):
|
|||
try:
|
||||
dt = datetime.strptime(date_str, f)
|
||||
if tz:
|
||||
dt = dt.astimezone(pytz.timezone(tz))
|
||||
dt = dt.replace(tzinfo=pytz.timezone(tz))
|
||||
return int(dt.timestamp())
|
||||
except:
|
||||
pass
|
||||
try:
|
||||
dt = datetime.strptime(date_tzfix, f)
|
||||
if tz:
|
||||
dt = dt.astimezone(pytz.timezone(tz))
|
||||
dt = dt.replace(tzinfo=pytz.timezone(tz))
|
||||
return int(dt.timestamp())
|
||||
except:
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue
Block a user