Merge pull request #16313 from gavindsouza/misc-fixes-7

This commit is contained in:
Suraj Shetty 2022-03-17 10:09:48 +05:30 committed by GitHub
commit 785bee4a8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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