From ce1df1095b1962a4fde0ec39ac111fc89765d895 Mon Sep 17 00:00:00 2001 From: Scott Bahling Date: Sun, 26 Jan 2020 15:15:22 +0100 Subject: Pass extra optional arguments to get_log --- obsapi/buildapi.py | 4 ++-- 1 file 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 -- cgit v1.2.3