summaryrefslogtreecommitdiff
path: root/obsapi/buildapi.py
diff options
context:
space:
mode:
authorScott Bahling <sbahling@suse.com>2020-01-26 15:15:22 +0100
committerScott Bahling <sbahling@suse.com>2020-01-26 15:15:22 +0100
commitce1df1095b1962a4fde0ec39ac111fc89765d895 (patch)
tree4a72a2bbace24e6a8477a0e58eb18da7b297e02e /obsapi/buildapi.py
parentf728ee98064776a186a154e6c931ec3c87719b98 (diff)
downloadobsapi-ce1df1095b1962a4fde0ec39ac111fc89765d895.tar.gz
obsapi-ce1df1095b1962a4fde0ec39ac111fc89765d895.tar.xz
obsapi-ce1df1095b1962a4fde0ec39ac111fc89765d895.zip
Pass extra optional arguments to get_log
Diffstat (limited to 'obsapi/buildapi.py')
-rw-r--r--obsapi/buildapi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/obsapi/buildapi.py b/obsapi/buildapi.py
index caa09d0..19eb96e 100644
--- a/obsapi/buildapi.py
+++ b/obsapi/buildapi.py
@@ -54,8 +54,8 @@ class ObsBuildApi(ObsHttpApi):
def get_status(self, prj, repo, arch, pkg):
return self.__get(prj, repo, arch, pkg, '_status')
- def get_log(self, prj, repo, arch, pkg):
- return self.__get(prj, repo, arch, pkg, '_log')
+ def get_log(self, prj, repo, arch, pkg, **kwargs):
+ return self.__get(prj, repo, arch, pkg, '_log', **kwargs)
def get_repository(self, prj, repo, arch, binaryname=''):
# Important! We call self.get() to handle binary get properly