diff --git a/osclib/stagingapi.py b/osclib/stagingapi.py index 5ac7a3a4..5f5c97e3 100644 --- a/osclib/stagingapi.py +++ b/osclib/stagingapi.py @@ -200,7 +200,7 @@ class StagingAPI(object): # XXX TODO - Test-DVD-x86_64 is hardcoded here if pkg in ret and not pkg.startswith('Test-DVD-'): msg = '{} is defined in two projects ({} and {})' - if checklinks and pkg in except_pkgs and prj == except_pkgs[pkg]: + if pkg.startswith('000') or (checklinks and pkg in except_pkgs and prj == except_pkgs[pkg]): msg = '' if len(msg): raise Exception(msg.format(pkg, ret[pkg], prj))