From c8185c29c3d5d74a1709a440fa6a8bdbf9600cda Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Thu, 6 Jun 2013 10:17:10 +0000 Subject: Remove intermediate variables I find it easier to read without them, since there are less variables to remember. --- morphlib/buildcommand.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'morphlib/buildcommand.py') diff --git a/morphlib/buildcommand.py b/morphlib/buildcommand.py index ac230970..97c5ff86 100644 --- a/morphlib/buildcommand.py +++ b/morphlib/buildcommand.py @@ -333,10 +333,10 @@ class BuildCommand(object): '''Create the staging area for building a single artifact.''' self.app.status(msg='Creating staging area') - staging_dir = os.path.join(self.app.settings['tempdir'], 'staging') - tmp_staging_area_dir = tempfile.mkdtemp(dir=staging_dir) + staging_dir = tempfile.mkdtemp( + dir=os.path.join(self.app.settings['tempdir'], 'staging')) staging_area = morphlib.stagingarea.StagingArea( - self.app, tmp_staging_area_dir, build_env, use_chroot, extra_env, + self.app, staging_dir, build_env, use_chroot, extra_env, extra_path) return staging_area -- cgit v1.2.1