Skip to content

Commit

Permalink
docs: warning message indentation in upgrade
Browse files Browse the repository at this point in the history
The warning message printed during `tutor local upgrade` was incorrectly
indented.
  • Loading branch information
regisb committed Aug 8, 2024
1 parent a97a7b0 commit 8aed225
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tutor/commands/compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,15 @@ def interactive_upgrade(
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=" "
)
Expand Down

0 comments on commit 8aed225

Please sign in to comment.