Skip to content

Commit 58214f3

Browse files
committed
Add empty dst to GitLabTsInfo to fix issue #15
1 parent fe45e77 commit 58214f3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

gitlab3/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,8 @@ def __init__(self, utcoffset):
368368
self.utcoffset_val = timedelta(minutes=utcoffset)
369369
def utcoffset(self, dt):
370370
return self.utcoffset_val
371+
def dst(self):
372+
return None
371373
sign = offset[0]
372374
hours = int(offset[1:3])
373375
minutes = int(offset[-2:])

0 commit comments

Comments
 (0)