Skip to content

Commit a5443c4

Browse files
committed
Fixed about datetime format
1 parent e8f71e5 commit a5443c4

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
@@ -328,7 +328,7 @@ def _convert_dates(self, data):
328328

329329
def _convert_gitlab_date(self, datetime_str):
330330
"""Convert GitLab datetime string to datetime object"""
331-
fmt = '%Y-%m-%dT%H:%M:%S'
331+
fmt = '%Y-%m-%dT%H:%M:%S.%f'
332332
offset = None
333333
if datetime_str.endswith('Z'):
334334
datetime_str = datetime_str[:-1]

0 commit comments

Comments
 (0)