Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: gentoo/
Date: Mon, 04 Jul 2011 21:10:10
Message-Id: 64f1cc6c843672e9e0fff33ff033eb41b817adf2.wiktor@gentoo
1 commit: 64f1cc6c843672e9e0fff33ff033eb41b817adf2
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Mon Jul 4 21:02:16 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Mon Jul 4 21:02:16 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=64f1cc6c
7
8 gentoo/utils.py: fixed _() macro
9
10 ---
11 gentoo/utils.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/gentoo/utils.py b/gentoo/utils.py
15 index a98bc5b..ec77e04 100644
16 --- a/gentoo/utils.py
17 +++ b/gentoo/utils.py
18 @@ -1053,7 +1053,7 @@ class GentooInstall:
19
20 def copy_portage(self):
21 self._progress.set_fraction(0.0)
22 - self._progress.set_text(_"Copying the Portage tree")
23 + self._progress.set_text(_("Copying the Portage tree"))
24 subprocess.Popen("cp", "--recursive", "/usr/portage", self._root+"/usr/")
25 # We need some packages from anaconda-overlay but ideally they should be added to portage
26 self._progress.set_fraction(0.5)