diff options
Diffstat (limited to 'dlpcvp.py')
-rwxr-xr-x | dlpcvp.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -148,6 +148,10 @@ def get_spec_name(req: Request, proj: str, pkg: str, etag: OStr = None) -> OStr: name = elem.get('name') if name.endswith('.spec'): spec_files.append(name) + if name == '_aggregate': + log.warning(f'Package {pkg} is just aggregate, ignoring.') + return None + except HTTPError as ex: if ex.getcode() == 404: log.warning(f'Cannot acquire version of {pkg}.') |