From 2dae7dbcd175c633f7c5354fcd2a606789ebe17e Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Wed, 26 Nov 2014 17:52:47 +0000 Subject: fixup compute_install_command --- installer/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/installer.py b/installer/installer.py index 6d4ac297..5c504ad1 100755 --- a/installer/installer.py +++ b/installer/installer.py @@ -158,7 +158,7 @@ class BaserockInstaller(): def install_system(self, install_script): run_script = "sh %s" % install_script - process = subprocess.check_call(run_script, shell=True) + subprocess.check_call(run_script, shell=True) def deploying_to_device(self, location): dev_regex = re.compile("^/dev/((sd|vd|mmcblk|hd)[a-z0-9]+)$") -- cgit v1.2.1