diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-26 23:40:01 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-26 23:40:01 +0000 |
commit | 6227e19306664c7636d12bb80688e551a06600e8 (patch) | |
tree | 71a93d97401d0e9fb5e6efb5cb3ef2f54809c757 | |
parent | gentoo/utils.py: oops, left some Entropy cruft (diff) | |
download | anaconda-6227e19306664c7636d12bb80688e551a06600e8.tar.gz anaconda-6227e19306664c7636d12bb80688e551a06600e8.tar.bz2 anaconda-6227e19306664c7636d12bb80688e551a06600e8.zip |
gentoo/utils.py: the Portage class needs a terminal instance
-rw-r--r-- | gentoo/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoo/utils.py b/gentoo/utils.py index 5ea499d..95fc3f8 100644 --- a/gentoo/utils.py +++ b/gentoo/utils.py @@ -174,7 +174,7 @@ class GentooInstall: self._prod_root = productPath self._intf = anaconda.intf self._progress = GentooProgress(anaconda) - self._portage = Portage() + self._portage = Portage(anaconda._intf.instProgress.terminal) self._settings = SystemSettings() with open("/proc/cmdline", "r") as cmd_f: self.cmdline = cmd_f.readline().strip().split() |