From 8b47ee94a3ed75dc24ef3a695aa7e23576d17a16 Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Tue, 4 Mar 2014 13:04:12 -0500 Subject: [PATCH] No Bug - Fix python typo in mozboot, r=trivial, DONTBUILD, a=NPOTB --- python/mozboot/mozboot/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mozboot/mozboot/base.py b/python/mozboot/mozboot/base.py index 5fc6bb603e7858..759f3e211aa844 100644 --- a/python/mozboot/mozboot/base.py +++ b/python/mozboot/mozboot/base.py @@ -143,7 +143,7 @@ def apt_update(self): def apt_add_architecture(self, arch): command = ['dpkg', '--add-architecture'] - command.extemd(arch) + command.extend(arch) self.run_as_root(command)