osclib/core: package_kind(): include underscore as meta prefix.

Previously used by _product which is still used in SLE-12.
This commit is contained in:
Jimmy Berry 2019-09-24 11:25:18 -05:00
parent 96ca2080ef
commit f63da476c2

View File

@ -511,7 +511,7 @@ def entity_exists(apiurl, project, package=None):
return True
def package_kind(apiurl, project, package):
if package.startswith('00'):
if package.startswith('00') or package.startswith('_'):
return 'meta'
if ':' in package: