Merge pull request #10455 from gavindsouza/backups-var-fix

fix: Add backwards compatible verbose flag
This commit is contained in:
mergify[bot] 2020-05-22 07:53:33 +00:00 committed by GitHub
commit ce960f04da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,9 @@ import frappe
from frappe import _, conf
from frappe.utils import cstr, get_url, now_datetime
_verbose = False
# backup variable for backwards compatibility
verbose = False
_verbose = verbose
class BackupGenerator: