1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-07 13:48:43 +02:00

fix operating on _project meta

The removed code is plain wrong, ../_project/_meta?meta=1 exists
This commit is contained in:
Adrian Schröter
2022-07-11 11:16:15 +02:00
parent 496e24fa84
commit 932d4c5fa1

View File

@@ -3612,10 +3612,6 @@ def show_package_meta(apiurl, prj, pac, meta=False, blame=None):
query['view'] = "blame"
query['meta'] = 1
# The fake packages _project has no _meta file
if pac.startswith('_project'):
return ""
url = makeurl(apiurl, ['source', prj, pac, '_meta'], query)
try:
f = http_GET(url)