mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 02:45:37 -04:00
[grubcfg] False is case-sensitive in Python
This commit is contained in:
parent
17dcc38f3c
commit
42425e4030
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ def modify_grub_default(partitions, root_mount_point, distributor):
|
||||||
have_kernel_cmd = True
|
have_kernel_cmd = True
|
||||||
elif (lines[i].startswith("#GRUB_DISTRIBUTOR")
|
elif (lines[i].startswith("#GRUB_DISTRIBUTOR")
|
||||||
or lines[i].startswith("GRUB_DISTRIBUTOR")):
|
or lines[i].startswith("GRUB_DISTRIBUTOR")):
|
||||||
if libcalamares.job.configuration.get("keepDistributor", false):
|
if libcalamares.job.configuration.get("keepDistributor", False):
|
||||||
lines[i] = distributor_line
|
lines[i] = distributor_line
|
||||||
have_distributor_line = True
|
have_distributor_line = True
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue