index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Martin <martin@rys.pw> | 2024-04-19 14:47:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 22:47:18 +1000 |
commit | 0ea6dbbd7677b94e863b2ab333431716886b5f84 (patch) | |
tree | a9497f996189edb66790f609acf5efd54f2b2da6 /archinstall/lib/profile | |
parent | f7913f46eede7a2aad7d60faf5cd50a1acf92c03 (diff) |
-rw-r--r-- | archinstall/lib/profile/profiles_handler.py | 5 |
diff --git a/archinstall/lib/profile/profiles_handler.py b/archinstall/lib/profile/profiles_handler.py index 12dcee3f..b9acb4fe 100644 --- a/archinstall/lib/profile/profiles_handler.py +++ b/archinstall/lib/profile/profiles_handler.py @@ -107,6 +107,11 @@ class ProfileHandler: if details: for detail in filter(None, details): + # [2024-04-19] TODO: Backwards compatibility after naming change: https://github.com/archlinux/archinstall/pull/2421 + # 'Kde' is deprecated, remove this block in a future version + if detail == 'Kde': + detail = 'KDE Plasma' + if sub_profile := self.get_profile_by_name(detail): valid_sub_profiles.append(sub_profile) else: |