diff options
-rw-r--r-- | pym/portage/dbapi/bintree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 2b5dacd1d..5cc959615 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -851,7 +851,7 @@ class binarytree(object): tbz2_path = self.getname(pkgname) tbz2name = os.path.basename(tbz2_path) resume = False - if os.path.exists(tbz2name): + if os.path.exists(tbz2_path): if (tbz2name not in self.invalids): return else: |