summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-12-08 15:37:11 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-12-08 15:37:11 +0000
commit79c87e5bba33f97d0a40ca0fd0f83b6852735a05 (patch)
tree4af41ee2c382cda7a700d951e8caea67cf21ad3c
parentf84cc5c7cd78018b501afb0e07cb695a79f51b67 (diff)
downloaddefinitions-79c87e5bba33f97d0a40ca0fd0f83b6852735a05.tar.gz
fixup-installer-configure
-rwxr-xr-xinstaller.configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer.configure b/installer.configure
index da2423ec..1b7f3a77 100755
--- a/installer.configure
+++ b/installer.configure
@@ -31,11 +31,11 @@ import yaml
install_config_file = os.path.join(sys.argv[1], 'etc', 'install.conf')
try:
- installer_configuration={
+ installer_configuration = {
'INSTALLER_TARGET_STORAGE_DEVICE': os.environ['INSTALLER_TARGET_STORAGE_DEVICE'],
'INSTALLER_ROOTFS_TO_INSTALL': os.environ['INSTALLER_ROOTFS_TO_INSTALL'],
}
-except KeyError, e:
+except KeyError as e:
print "Not configuring as an installer system"
exit(0)