6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-09 16:36:29 +00:00

docs: warning message indentation in upgrade

The warning message printed during `tutor local upgrade` was incorrectly
indented.
This commit is contained in:
Régis Behmo 2024-07-26 17:42:28 +02:00 committed by Régis Behmo
parent a97a7b0abd
commit 8aed2251fd

View File

@ -172,15 +172,15 @@ Are you sure you want to continue?"""
if interactive:
question = f"""Your platform is being upgraded from {run_upgrade_from_release.capitalize()}.
If you run custom Docker images, you must rebuild them now by running the following command in a different shell:
If you run custom Docker images, you must rebuild them now by running the following command in a different shell:
tutor images build all # list your custom images here
tutor images build all # list your custom images here
See the documentation for more information:
See the documentation for more information:
https://docs.tutor.edly.io/install.html#upgrading-to-a-new-open-edx-release
https://docs.tutor.edly.io/install.html#upgrading-to-a-new-open-edx-release
Press enter when you are ready to continue"""
Press enter when you are ready to continue"""
click.confirm(
fmt.question(question), default=True, abort=True, prompt_suffix=" "
)