Remove redundant os.path.join() call in _init_ipc_fifos().
authorZac Medico <zmedico@gentoo.org>
Sun, 15 Aug 2010 16:17:17 +0000 (09:17 -0700)
committerZac Medico <zmedico@gentoo.org>
Sun, 15 Aug 2010 16:17:17 +0000 (09:17 -0700)
pym/_emerge/AbstractEbuildProcess.py

index 444feb7f450763cbd5c0a8282c57a264c64a4652..e2be8b856291437a04082645a9f33ae11ae0913a 100644 (file)
@@ -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: