summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-19 15:38:09 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-19 15:38:09 +0900
commit6004943e0202e12235c86568d9656044b065ed5a (patch)
tree1a4dd5e8c7f2df6134ef35a4b05752cf1e98f266
parent480876af901bd2482623ef42e82fe5a6c26deba9 (diff)
downloadbuildstream-6004943e0202e12235c86568d9656044b065ed5a.tar.gz
buildstream/_frontend/app.py: Fixing unused variables
-rw-r--r--buildstream/_frontend/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_frontend/app.py b/buildstream/_frontend/app.py
index 0f614f00f..1ad1f059e 100644
--- a/buildstream/_frontend/app.py
+++ b/buildstream/_frontend/app.py
@@ -476,7 +476,7 @@ class App():
except OSError as e:
raise AppError("Failed to create workspace directory: {}".format(e)) from e
- workspace = self.project.workspaces.create_workspace(target.name, workdir)
+ self.project.workspaces.create_workspace(target.name, workdir)
if not no_checkout:
with target.timed_activity("Staging sources to {}".format(directory)):