aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/portage/dep/_dnf.py')
-rw-r--r--lib/portage/dep/_dnf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/portage/dep/_dnf.py b/lib/portage/dep/_dnf.py
index 90c662242..1b14d2b43 100644
--- a/lib/portage/dep/_dnf.py
+++ b/lib/portage/dep/_dnf.py
@@ -83,6 +83,6 @@ def contains_disjunction(dep_struct):
assert x, 'Normalization error, empty conjunction found in %s' % (dep_struct,)
if x[0] == '||':
return True
- elif is_disjunction and contains_disjunction(x):
+ if is_disjunction and contains_disjunction(x):
return True
return False