mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
SDDM-config: allow poorly formatted SDDM config
SDDM itself doesn't trip over duplicate sections or keys, but the Python config-parser does (in strict mode). Relax a bit. FIXES #579
This commit is contained in:
parent
90e8a6cff9
commit
2905a9969d
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ def set_autologin(username,
|
|||
# Systems with Sddm as Desktop Manager
|
||||
sddm_conf_path = os.path.join(root_mount_point, "etc/sddm.conf")
|
||||
|
||||
sddm_config = configparser.ConfigParser()
|
||||
sddm_config = configparser.ConfigParser(strict=False)
|
||||
# Make everything case sensitive
|
||||
sddm_config.optionxform = str
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue