Skip to content

Commit ce2c835

Browse files
authored
Merge pull request python-gitlab#673 from python-gitlab/fix/672
fix(api): make reset_time_estimate() work again
2 parents 85ac102 + cb388d6 commit ce2c835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/mixins.py

Lines changed: 1 addition & 1 deletion
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)