Browse Source

[fix] integration broker patch

version-14
Nabin Hait 8 years ago
parent
commit
cb54017f4f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/patches/v7_1/setup_integration_services.py

+ 1
- 1
frappe/patches/v7_1/setup_integration_services.py View File

@@ -87,7 +87,7 @@ def get_parameters(app_details):
return {"settings": frappe.get_doc(app_details["doctype"])}

elif app_details["service_name"] == "Dropbox Integration":
doc = frappe.get_doc(app_details["doctype"])
doc = frappe.db.get_value(app_details["doctype"], None, ["dropbox_access_key", "dropbox_access_secret", "upload_backups_to_dropbox"])

if not (frappe.conf.dropbox_access_key and frappe.conf.dropbox_secret_key):
raise DataError


Loading…
Cancel
Save