summaryrefslogtreecommitdiff
path: root/morph
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-01 18:24:28 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-02 17:17:39 +0000
commitd239de86f98e210982ed70d87fff10cc27c52065 (patch)
treef9c30714545d283065eeac5c15b0046f80449148 /morph
parentfbe475ee1946ea1ee1acd182adfc1a5f2b7934b3 (diff)
downloadmorph-d239de86f98e210982ed70d87fff10cc27c52065.tar.gz
Remove unused argument from Builder.build and build_single methods
Diffstat (limited to 'morph')
-rwxr-xr-xmorph6
1 files changed, 3 insertions, 3 deletions
diff --git a/morph b/morph
index 14698ede..da85c069 100755
--- a/morph
+++ b/morph
@@ -151,7 +151,7 @@ class Morph(cliapp.Application):
self.msg('Building %s|%s|%s' % (repo, ref, filename))
# build things in this order
- builder.build(blobs, order)
+ builder.build(order)
tempdir.remove()
@@ -275,11 +275,11 @@ class Morph(cliapp.Application):
# build now
self.msg('Building %s' % second_blob)
- builder.build_single(second_blob, blobs, order)
+ builder.build_single(second_blob, order)
else:
# build the blob now
self.msg('Building %s' % first_blob)
- builder.build_single(first_blob, blobs, order)
+ builder.build_single(first_blob, order)
tempdir.remove()