summaryrefslogtreecommitdiff
path: root/lib/thandy/repository.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thandy/repository.py')
-rw-r--r--lib/thandy/repository.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/thandy/repository.py b/lib/thandy/repository.py
index a6df1bb..2dea1c4 100644
--- a/lib/thandy/repository.py
+++ b/lib/thandy/repository.py
@@ -483,6 +483,8 @@ class LocalRepository:
if h.isInstalled():
alreadyInstalled[h.getRelativePath()] = h
+ pkg_rp = pfile.getRelativePath()
+
for f in package['files']:
rp, h = f[:2]
if alreadyInstalled.has_key(rp):
@@ -505,7 +507,7 @@ class LocalRepository:
need.add(rp)
else:
if allHandles.has_key(rp):
- installableDict[rp] = allHandles[rp]
+ installableDict.setdefault(pkg_rp, {})[rp] = allHandles[rp]
# Okay; these are the files we need.
return need