1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-13 17:16:23 +01:00

* drop client side filtering, fails in "all" case and should anyway

happen on server side
This commit is contained in:
Adrian Schröter 2009-08-31 20:34:01 +00:00
parent d46812b8f8
commit cf8a20cc95

View File

@ -2376,8 +2376,7 @@ def get_request_list(apiurl, project, package, req_who='', req_state=('new',), r
for root in collection.findall('request'):
r = Request()
r.read(root)
if (r.state.name in req_state) or not len(req_state):
requests.append(r)
requests.append(r)
return requests