summaryrefslogtreecommitdiff
path: root/gitlab/mixins.py
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2019-01-08 11:11:47 +0100
committerGitHub <noreply@github.com>2019-01-08 11:11:47 +0100
commitce2c8356cdd0e086ec67a1bf73adc2d0ea251971 (patch)
tree11adcc0e03390de930ef9f9125cc659253598c2e /gitlab/mixins.py
parent85ac10200805de480a076760368336c8135e5acf (diff)
parentcb388d6e6d5ec6ef1746edfffb3449c17e31df34 (diff)
downloadgitlab-ce2c8356cdd0e086ec67a1bf73adc2d0ea251971.tar.gz
Merge pull request #673 from python-gitlab/fix/672
fix(api): make reset_time_estimate() work again
Diffstat (limited to 'gitlab/mixins.py')
-rw-r--r--gitlab/mixins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/mixins.py b/gitlab/mixins.py
index 2c80f36..ca68658 100644
--- a/gitlab/mixins.py
+++ b/gitlab/mixins.py
@@ -532,7 +532,7 @@ class TimeTrackingMixin(object):
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'),