Skip to content

Commit

Permalink
Merge pull request #673 from python-gitlab/fix/672
Browse files Browse the repository at this point in the history
fix(api): make reset_time_estimate() work again
  • Loading branch information
max-wittig committed Jan 8, 2019
2 parents 85ac102 + cb388d6 commit ce2c835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/mixins.py
Expand Up @@ -532,7 +532,7 @@ def reset_time_estimate(self, **kwargs):
GitlabAuthenticationError: If authentication is not correct
GitlabTimeTrackingError: If the time tracking update cannot be done
"""
path = '%s/%s/rest_time_estimate' % (self.manager.path, self.get_id())
path = '%s/%s/reset_time_estimate' % (self.manager.path, self.get_id())
return self.manager.gitlab.http_post(path, **kwargs)

@cli.register_custom_action(('ProjectIssue', 'ProjectMergeRequest'),
Expand Down

0 comments on commit ce2c835

Please sign in to comment.