Skip to content
Snippets Groups Projects
Verified Commit 165e30de authored by Newbyte's avatar Newbyte :snowflake:
Browse files

pmb.config.init: Don't convert sudo timer return value to str

config.sudo_timer is a bool, and the returned value here is a bool. No
point in converting it to a str.
parent 70eafa99
No related branches found
No related tags found
No related merge requests found
......@@ -531,7 +531,7 @@ def ask_for_additional_options(config) -> None:
"Enable background timer to prevent repeated sudo authorization?",
default=context.sudo_timer,
)
config.sudo_timer = str(answer)
config.sudo_timer = answer
# Mirrors
# prompt for mirror change
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment