diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-06-25 02:54:15 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-06-25 02:54:15 +0000 |
commit | 923ccec33c4b677fdbb3909786c6956ac2a6cb0b (patch) | |
tree | fdac1188d0d081b9c65f3f02064b0606f0e4a767 | |
parent | b79ca41219177d109e77e80d7429d8eeb04fa4c0 (diff) | |
download | portage-923ccec33c4b677fdbb3909786c6956ac2a6cb0b.tar.gz portage-923ccec33c4b677fdbb3909786c6956ac2a6cb0b.tar.bz2 portage-923ccec33c4b677fdbb3909786c6956ac2a6cb0b.zip |
Fix typo.
svn path=/main/trunk/; revision=7019
-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: |