From: Zac Medico Date: Sun, 6 Jul 2008 08:22:31 +0000 (-0000) Subject: Fix parent class constructor call in the BinpkgFetcher constructor. X-Git-Tag: v2.2_rc2~181 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=81676e7a6301f25609e9e89f9cdeaa0ce1375427;p=portage.git Fix parent class constructor call in the BinpkgFetcher constructor. svn path=/main/trunk/; revision=10957 --- 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)