fix: Typo in is_downgrade's user warning
Fixes https://github.com/frappe/frappe/issues/16312
This commit is contained in:
parent
5f1eadeb7a
commit
14a4e35d8d
1 changed files with 1 additions and 1 deletions
|
|
@ -611,7 +611,7 @@ def is_downgrade(sql_file_path, verbose=False):
|
|||
downgrade = backup_version > current_version
|
||||
|
||||
if verbose and downgrade:
|
||||
print("Your site will be downgraded from Frappe {0} to {1}".format(current_version, backup_version))
|
||||
print(f"Your site will be downgraded from Frappe {backup_version} to {current_version}")
|
||||
|
||||
return downgrade
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue