summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/bintree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py
index 4d598ad7a..51d565489 100644
--- a/pym/portage/dbapi/bintree.py
+++ b/pym/portage/dbapi/bintree.py
@@ -778,10 +778,10 @@ class binarytree(object):
except OSError:
pass
# Fall back to the "All" directory
- uri = urljoin(base_url, "All/"+tbz2name)
+ url = urljoin(base_url, "All/"+tbz2name)
success = portage.getbinpkg.file_get(url, mydest, fcmd=fcmd)
else:
- uri = urljoin(base_url, tbz2name)
+ url = urljoin(base_url, tbz2name)
success = portage.getbinpkg.file_get(url, mydest, fcmd=fcmd)
if success:
self.inject(pkgname)