summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-08-15 09:17:17 -0700
committerZac Medico <zmedico@gentoo.org>2010-08-15 09:17:17 -0700
commit3ddf3cbe92e49b619b72c52a0b8e81b5969f6100 (patch)
tree4529cd213e707c83cd4010f7359003291109b8b4
parent8155eaf46ed78ae4358943a29036efc2306ff2b6 (diff)
downloadportage-3ddf3cbe92e49b619b72c52a0b8e81b5969f6100.tar.gz
portage-3ddf3cbe92e49b619b72c52a0b8e81b5969f6100.tar.bz2
portage-3ddf3cbe92e49b619b72c52a0b8e81b5969f6100.zip
Remove redundant os.path.join() call in _init_ipc_fifos().
-rw-r--r--pym/_emerge/AbstractEbuildProcess.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py
index 444feb7f4..e2be8b856 100644
--- a/pym/_emerge/AbstractEbuildProcess.py
+++ b/pym/_emerge/AbstractEbuildProcess.py
@@ -77,9 +77,7 @@ class AbstractEbuildProcess(SpawnProcess):
output_fifo = os.path.join(
self.settings['PORTAGE_BUILDDIR'], '.ipc_out')
- for x in (input_fifo, output_fifo):
-
- p = os.path.join(self.settings['PORTAGE_BUILDDIR'], x)
+ for p in (input_fifo, output_fifo):
st = None
try: