summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-27 13:18:43 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-27 13:18:43 +0100
commit15693e19863a4a726d53328df2866814e69f027e (patch)
tree88f900d7b893c011fab8571c858063c860abf66d /morphlib
parenta113721d1d75e6ab61d9c9d3de4f9c05837864df (diff)
downloadmorph-15693e19863a4a726d53328df2866814e69f027e.tar.gz
Remove unnecessary variable
Suggested by Richard Maw.
Diffstat (limited to 'morphlib')
-rwxr-xr-xmorphlib/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/app.py b/morphlib/app.py
index f591a66c..628136cc 100755
--- a/morphlib/app.py
+++ b/morphlib/app.py
@@ -92,7 +92,7 @@ class BuildCommand(object):
def new_artifact_caches(self):
'''Create new objects for local, remote artifact caches.'''
- cachedir = self.create_cachedir()
+ self.create_cachedir()
artifact_cachedir = self.create_artifact_cachedir()
lac = morphlib.localartifactcache.LocalArtifactCache(artifact_cachedir)