From fd9fd7c940067d095b258caa0c881120afd722c8 Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Fri, 22 May 2020 12:12:14 +0530 Subject: [PATCH] fix: backwards compatible verbose flag --- frappe/utils/backups.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frappe/utils/backups.py b/frappe/utils/backups.py index 087dec3111..e4e9b65e49 100644 --- a/frappe/utils/backups.py +++ b/frappe/utils/backups.py @@ -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: