Skip to content

Commit 342e944

Browse files
authored
Merge pull request #1 from anarcher/master
Fixed about datetime format
2 parents 4aeeb7c + a5443c4 commit 342e944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def _convert_dates(self, data):
344344

345345
def _convert_gitlab_date(self, datetime_str):
346346
"""Convert GitLab datetime string to datetime object"""
347-
fmt = '%Y-%m-%dT%H:%M:%S'
347+
fmt = '%Y-%m-%dT%H:%M:%S.%f'
348348
offset = None
349349
if datetime_str.endswith('Z'):
350350
datetime_str = datetime_str[:-1]

0 commit comments

Comments
 (0)