aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/portage/dbapi/vartree.py')
-rw-r--r--lib/portage/dbapi/vartree.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/portage/dbapi/vartree.py b/lib/portage/dbapi/vartree.py
index 0b04ab8ea..fcf164e82 100644
--- a/lib/portage/dbapi/vartree.py
+++ b/lib/portage/dbapi/vartree.py
@@ -1576,8 +1576,7 @@ class vartree:
use_cache=use_cache))
if mymatch is None:
return ""
- else:
- return mymatch
+ return mymatch
def dep_match(self, mydep, use_cache=1):
"compatibility method -- we want to see all matches, not just visible ones"
@@ -1585,8 +1584,7 @@ class vartree:
mymatch = self.dbapi.match(mydep, use_cache=use_cache)
if mymatch is None:
return []
- else:
- return mymatch
+ return mymatch
def exists_specific(self, cpv):
return self.dbapi.cpv_exists(cpv)