poezio/poezio#3472: Ensure tz is correctly set when offset is an int
Thanks lovetox! Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
2dda6b80d4
commit
0042108a67
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ def time(hour=None, min=None, sec=None, micro=None, offset=None, obj=False):
|
|||
sec = now.second
|
||||
if micro is None:
|
||||
micro = now.microsecond
|
||||
if offset is None:
|
||||
if offset in (None, 0):
|
||||
offset = tzutc()
|
||||
elif not isinstance(offset, dt.tzinfo):
|
||||
offset = tzoffset(None, offset)
|
||||
|
@ -177,7 +177,7 @@ def datetime(year=None, month=None, day=None, hour=None,
|
|||
sec = now.second
|
||||
if micro is None:
|
||||
micro = now.microsecond
|
||||
if offset is None:
|
||||
if offset in (None, 0):
|
||||
offset = tzutc()
|
||||
elif not isinstance(offset, dt.tzinfo):
|
||||
offset = tzoffset(None, offset)
|
||||
|
|
Loading…
Reference in a new issue