Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15133 - main/branches/prefix/pym/_emerge
Date: Tue, 22 Dec 2009 21:12:39
Message-Id: E1NNC20-0003JG-Ej@stork.gentoo.org
1 Author: grobian
2 Date: 2009-12-22 21:12:36 +0000 (Tue, 22 Dec 2009)
3 New Revision: 15133
4
5 Modified:
6 main/branches/prefix/pym/_emerge/BinpkgChpathtoolAsync.py
7 Log:
8 it helps when you use the right class name
9
10 Modified: main/branches/prefix/pym/_emerge/BinpkgChpathtoolAsync.py
11 ===================================================================
12 --- main/branches/prefix/pym/_emerge/BinpkgChpathtoolAsync.py 2009-12-22 20:51:16 UTC (rev 15132)
13 +++ main/branches/prefix/pym/_emerge/BinpkgChpathtoolAsync.py 2009-12-22 21:12:36 UTC (rev 15133)
14 @@ -11,7 +11,7 @@
15 else:
16 sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "pym"))
17 import portage
18 -class BinpkgExtractorAsync(SpawnProcess):
19 +class BinpkgChpathtoolAsync(SpawnProcess):
20
21 __slots__ = ("buildprefix", "eprefix", "image_dir", "work_dir")