summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-06 08:22:31 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-06 08:22:31 +0000
commit81676e7a6301f25609e9e89f9cdeaa0ce1375427 (patch)
tree2c1537ef7f82540b959dfaf13b1c609f97c66679 /pym
parent5cbc843e4c01b392c3c5295d43f28149cfc0921d (diff)
downloadportage-81676e7a6301f25609e9e89f9cdeaa0ce1375427.tar.gz
portage-81676e7a6301f25609e9e89f9cdeaa0ce1375427.tar.bz2
portage-81676e7a6301f25609e9e89f9cdeaa0ce1375427.zip
Fix parent class constructor call in the BinpkgFetcher constructor.
svn path=/main/trunk/; revision=10957
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index cc4ae2996..5359745b7 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -2587,7 +2587,7 @@ class BinpkgFetcher(SpawnProcess):
"locked", "pkg_path", "_lock_obj")
def __init__(self, **kwargs):
- SubProcess.__init__(self, **kwargs)
+ SpawnProcess.__init__(self, **kwargs)
pkg = self.pkg
self.pkg_path = pkg.root_config.trees["bintree"].getname(pkg.cpv)