diff options
| author | Scott Bahling <sbahling@suse.de> | 2016-04-19 16:06:57 +0200 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.de> | 2016-04-19 16:06:57 +0200 |
| commit | 0827824cab43b7a5fd732f6ed5e94b44a745cc00 (patch) | |
| tree | f81a2b34093fc0cdb6b7cad6573386b354e9aa1f /obsapi/sourceapi.py | |
| parent | 3ea5bd07c23838b1a96357089e8173a094dfaed1 (diff) | |
| download | obsapi-0827824cab43b7a5fd732f6ed5e94b44a745cc00.tar.gz obsapi-0827824cab43b7a5fd732f6ed5e94b44a745cc00.tar.xz obsapi-0827824cab43b7a5fd732f6ed5e94b44a745cc00.zip | |
Update api core to use buildapi and sourceapiobsapi-0.0.5
Diffstat (limited to 'obsapi/sourceapi.py')
| -rw-r--r-- | obsapi/sourceapi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/obsapi/sourceapi.py b/obsapi/sourceapi.py index 4841ad9..23fee99 100644 --- a/obsapi/sourceapi.py +++ b/obsapi/sourceapi.py @@ -13,8 +13,8 @@ class ObsSourceApi(ObsHttpApi): def __put(self, *args, **kwargs): return super(ObsSourceApi, self).put(*args, **kwargs) - def get(self, prj, pkg='', filename=''): - return self.__get(prj, pkg, filename) + def get(self, prj, pkg='', filename='', view=None): + return self.__get(prj, pkg, filename, view=view) def put(self, prj, pkg, filename, data): return self.__put(prj, pkg, filename, data=data) |
