Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 141279
Collapse All | Expand All

(-)pym/portage.py (-4 / +2 lines)
Lines 4073-4082 Link Here
4073
		for x in wants:
4073
		for x in wants:
4074
			if self.bintree and self.bintree.isremote(mycpv):
4074
			if self.bintree and self.bintree.isremote(mycpv):
4075
				# We use the cache for remote packages
4075
				# We use the cache for remote packages
4076
				if self.bintree.remotepkgs[tbz2name].has_key(x):
4076
				mylist.append(" ".join(
4077
					mylist.append(self.bintree.remotepkgs[tbz2name][x][:]) # [:] Copy String
4077
					self.bintree.remotepkgs[tbz2name].get(x,"").split()))
4078
				else:
4079
					mylist.append("")
4080
			else:
4078
			else:
4081
				myval = tbz2.getfile(x)
4079
				myval = tbz2.getfile(x)
4082
				if myval is None:
4080
				if myval is None:

Return to bug 141279