summaryrefslogtreecommitdiff
path: root/installer.configure
diff options
context:
space:
mode:
Diffstat (limited to '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)