diff --git a/frappe/config/setup.py b/frappe/config/setup.py index 0d8a3caf3f..0e5fe02046 100644 --- a/frappe/config/setup.py +++ b/frappe/config/setup.py @@ -208,15 +208,6 @@ def get_data(): "description": _("Install Applications."), "icon": "icon-download" }, - { - "type": "doctype", - "name": "Backup Manager", - "label": _("Download Backup"), - "onclick": "frappe.ui.toolbar.download_backup", - "icon": "icon-download-alt", - "description": _("Send download link of a recent backup to System Managers"), - "hide_count": True - }, { "type": "doctype", "name": "Backup Manager", diff --git a/frappe/email/bulk.py b/frappe/email/bulk.py index 47b75362cd..b252d8069f 100644 --- a/frappe/email/bulk.py +++ b/frappe/email/bulk.py @@ -165,7 +165,7 @@ def unsubscribe(doctype, name, email): return_unsubscribed_page(email, doctype, name) def return_unsubscribed_page(email, doctype, name): - frappe.respond_as_web_page(_("Unsubscribed"), _("{0} has has left the conversation in {1} {2}").format(email, _(doctype), name)) + frappe.respond_as_web_page(_("Unsubscribed"), _("{0} has left the conversation in {1} {2}").format(email, _(doctype), name)) def flush(from_test=False): """flush email queue, every time: called from scheduler"""