1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 17:36:13 +01:00
This commit is contained in:
Sascha Peilicke 2010-11-10 12:18:17 +01:00
parent 8321e41096
commit dc49a7ebb2

View File

@ -2728,7 +2728,7 @@ def meta_get_project_list(apiurl, deleted=None):
u = makeurl(apiurl, ['source'], query)
f = http_GET(u)
root = ET.parse(f).getroot()
return sorted([ node.get('name') for node in root ])
return sorted([ node.get('name') for node in root if node.get('name')])
def show_project_meta(apiurl, prj):