diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 4ee9fe5a50..dcea241051 100644 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -102,7 +102,9 @@ def new_site( except Exception: traceback.print_exc() - if sys.__stdin__.isatty() and click.confirm("Do you want to rollback the failed site?", abort=True): + if sys.__stdin__.isatty() and click.confirm( + "Site creation failed, do you want to rollback the site?", abort=True + ): rollback_callback.run() sys.exit(1)