mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[modules] displaymanager: try to fix regression introduced with c8fd11b
This commit is contained in:
parent
aa789bc8e9
commit
d20285d4f2
1 changed files with 2 additions and 2 deletions
|
@ -483,8 +483,8 @@ def run():
|
|||
if (os.path.exists(greeter_path)):
|
||||
# configure first found lightdm-greeter
|
||||
for entry in os.listdir(greeter_path):
|
||||
if entry.name.endswith('.desktop'):
|
||||
greeter = entry.name.split('.')[0]
|
||||
if entry.endswith('.desktop'):
|
||||
greeter = entry.split('.')[0]
|
||||
libcalamares.utils.debug(
|
||||
"found greeter {!s}".format(greeter)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue