diff options
| author | Scott Bahling <sbahling@suse.com> | 2020-02-13 15:28:00 +0100 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.com> | 2020-02-13 15:28:00 +0100 |
| commit | 5b3a2b608c4c4c5d4df4b07d9322279349085dc9 (patch) | |
| tree | 7ac6b2131e941b264a033b98a7de2c911b125e26 /obsapi/core.py | |
| parent | b2e96e97ccbe3b6b670a8366dc1ff5ed775deddf (diff) | |
| download | obsapi-5b3a2b608c4c4c5d4df4b07d9322279349085dc9.tar.gz obsapi-5b3a2b608c4c4c5d4df4b07d9322279349085dc9.tar.xz obsapi-5b3a2b608c4c4c5d4df4b07d9322279349085dc9.zip | |
Make sure build api arguments match order of OBS api path items.
This of course breaks the API, but hopefully we stay consistent
from this point forward
Diffstat (limited to 'obsapi/core.py')
| -rw-r--r-- | obsapi/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/obsapi/core.py b/obsapi/core.py index 8e17de7..d0ca9e6 100644 --- a/obsapi/core.py +++ b/obsapi/core.py @@ -254,7 +254,7 @@ class ObsApi(object): return self.build.get_buildconfig(prj, repo) def get_build_info(self, prj, pkg, repo, arch): - return self.build.get_buildinfo(prj, pkg, repo, arch) + return self.build.get_buildinfo(prj, repo, arch, pkg) def get_nothing_provides(self, prj, pkg, repo, arch): tree = etree.fromstring(self.get_build_info(prj, pkg, repo, arch)) |
