Merge branch 'staging' into develop

This commit is contained in:
Ameya Shenoy 2018-09-21 10:59:49 +00:00
commit ffcc3fc838
No known key found for this signature in database
GPG key ID: AC016A555657D0A3
3 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ source_link = "https://github.com/frappe/frappe"
app_license = "MIT"
develop_version = '11.x.x-develop'
staging_version = '11.0.1'
staging_version = '11.0.2'
app_email = "info@frappe.io"

View file

@ -111,7 +111,7 @@ def insert_user_social_login(user, modified_by, provider, idx, userid=None, user
VALUES ({values})
""".format(
source_cols = "`" + "`, `".join(source_cols) + "`",
values= "'" + "', '".join(values) + "'"
values= "'" + "', '".join([frappe.db.escape(d) for d in values]) + "'"
)
frappe.db.sql(query)

View file

@ -22,7 +22,7 @@ email_reply_parser
click
num2words==0.5.5
watchdog==0.8.0
bleach
bleach==2.1.4
bleach-whitelist
Pillow
beautifulsoup4