Skip to content

Commit cb388d6

Browse files
author
Gauvain Pocentek
committed
fix(api): make reset_time_estimate() work again
Closes #672
1 parent 85ac102 commit cb388d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/mixins.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def reset_time_estimate(self, **kwargs):
532532
GitlabAuthenticationError: If authentication is not correct
533533
GitlabTimeTrackingError: If the time tracking update cannot be done
534534
"""
535-
path = '%s/%s/rest_time_estimate' % (self.manager.path, self.get_id())
535+
path = '%s/%s/reset_time_estimate' % (self.manager.path, self.get_id())
536536
return self.manager.gitlab.http_post(path, **kwargs)
537537

538538
@cli.register_custom_action(('ProjectIssue', 'ProjectMergeRequest'),

0 commit comments

Comments
 (0)