diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-08-14 13:34:35 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-08-14 13:40:48 +0000 |
commit | 4402f20224b2cac121b5e788e4395ff4809b6371 (patch) | |
tree | cd053ba5be7e3bc8ed45f0cdea9b026e00b96b65 /gentoo | |
parent | fix typo (diff) | |
download | anaconda-4402f20224b2cac121b5e788e4395ff4809b6371.tar.gz anaconda-4402f20224b2cac121b5e788e4395ff4809b6371.tar.bz2 anaconda-4402f20224b2cac121b5e788e4395ff4809b6371.zip |
fix LC_ALL issue
Diffstat (limited to 'gentoo')
-rw-r--r-- | gentoo/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gentoo/utils.py b/gentoo/utils.py index 017c8d4..808202b 100644 --- a/gentoo/utils.py +++ b/gentoo/utils.py @@ -759,12 +759,12 @@ class GentooInstall: """ - action = _("System Installation") - anaconda._intf.instProgress.terminal.run_command("tar xvjpf /tmp/stage3.tar.bz2 -C "+self._root) + action = _("Unpacking stage3") + anaconda._intf.instProgress.terminal.run_command("tar xvjpf "+productPath+" -C "+self._root) self._progress.set_fraction(1) - self._progress.set_text(_("Installation complete")) + self._progress.set_text(_("Unpacking stage3 complete")) def language_packs_install(self): return |