summaryrefslogtreecommitdiff
path: root/morphlib/builder2.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-20 14:48:59 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-20 14:48:59 +0100
commit71e40a698069e69175bfeedc526a95c8fb5330d6 (patch)
tree16f63c14a1d029500eb76596c7321caf72e1bf9a /morphlib/builder2.py
parent7ce497e90512645ea911cf58fa5de84394621f3a (diff)
downloadmorph-71e40a698069e69175bfeedc526a95c8fb5330d6.tar.gz
Remove unnecessary argument from unpack_binary_from_file call
Diffstat (limited to 'morphlib/builder2.py')
-rw-r--r--morphlib/builder2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/builder2.py b/morphlib/builder2.py
index 0f434524..612df4fd 100644
--- a/morphlib/builder2.py
+++ b/morphlib/builder2.py
@@ -303,7 +303,7 @@ class SystemBuilder(BuilderBase): # pragma: no cover
logging.debug('Unpacking strata to %s' % path)
for stratum_artifact in self.artifact.dependencies:
with self.artifact_cache.get(stratum_artifact) as f:
- morphlib.bins.unpack_binary_from_file(f, path, self.ex)
+ morphlib.bins.unpack_binary_from_file(f, path)
morphlib.builder.ldconfig(self.ex, path)
def _create_fstab(self, path):