1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 09:16:16 +02:00

Merge pull request #1070 from adrianschroeter/fix_meta

Fix operating on _project meta
This commit is contained in:
Daniel Mach 2022-07-12 08:39:49 +02:00 committed by GitHub
commit 8f12f884c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)