displaymanager: Make the settings follow the naming convention.

Make the defaultDesktopEnvironment and desktopFile settings in
displaymanager.conf follow the naming convention used in the other .conf
files.
This commit is contained in:
Kevin Kofler 2014-12-01 03:30:42 +01:00
parent a54067f709
commit b411a66baf
2 changed files with 4 additions and 4 deletions

View file

@ -212,8 +212,8 @@ def run():
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
if "default_desktop_environment" in libcalamares.job.configuration:
entry = libcalamares.job.configuration["default_desktop_environment"]
default_desktop_environment = DesktopEnvironment(entry["executable"], entry["desktop_file"])
entry = libcalamares.job.configuration["defaultDesktopEnvironment"]
default_desktop_environment = DesktopEnvironment(entry["executable"], entry["desktopFile"])
else:
default_desktop_environment = find_desktop_environment(root_mount_point)