We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents05da7ba +bb5a1df commitd321847Copy full SHA for d321847
gitlab/v4/objects.py
@@ -689,7 +689,7 @@ def artifacts(self, streamed=False, action=None, chunk_size=1024,
689
str: The artifacts if `streamed` is False, None otherwise.
690
"""
691
path='%s/%s/artifacts'% (self.manager.path,self.get_id())
692
-result=self.manager.gitlab.get_http(path,streamed=streamed,
+result=self.manager.gitlab.http_get(path,streamed=streamed,
693
**kwargs)
694
returnutils.response_content(result,streamed,action,chunk_size)
695
@@ -715,7 +715,7 @@ def trace(self, streamed=False, action=None, chunk_size=1024, **kwargs):
715
str: The trace
716
717
path='%s/%s/trace'% (self.manager.path,self.get_id())
718
719
720
721