diff options
| author | Scott Bahling <sbahling@suse.com> | 2020-01-26 15:15:22 +0100 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.com> | 2020-01-26 15:15:22 +0100 |
| commit | ce1df1095b1962a4fde0ec39ac111fc89765d895 (patch) | |
| tree | 4a72a2bbace24e6a8477a0e58eb18da7b297e02e | |
| parent | f728ee98064776a186a154e6c931ec3c87719b98 (diff) | |
| download | obsapi-ce1df1095b1962a4fde0ec39ac111fc89765d895.tar.gz obsapi-ce1df1095b1962a4fde0ec39ac111fc89765d895.tar.xz obsapi-ce1df1095b1962a4fde0ec39ac111fc89765d895.zip | |
Pass extra optional arguments to get_log
| -rw-r--r-- | obsapi/buildapi.py | 4 |
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 |
