summaryrefslogtreecommitdiff
path: root/FilesCheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'FilesCheck.py')
-rw-r--r--FilesCheck.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/FilesCheck.py b/FilesCheck.py
index 224eb9c..9251561 100644
--- a/FilesCheck.py
+++ b/FilesCheck.py
@@ -1148,8 +1148,11 @@ class FilesCheck(AbstractCheck.AbstractCheck):
if res and not (pkg.check_versioned_dep('python-base',
res.group(1)) or
pkg.check_versioned_dep('python',
- res.group(1))):
- printError(pkg, 'no-dependency-on', 'python-base',
+ res.group(1)) or
+ pkg.check_versioned_dep('python(abi)',
+ res.group(1))
+ ):
+ printError(pkg, 'no-dependency-on', 'python(abi)',
res.group(1))
python_dep_error = True