diff options
author | BonfaceKilz | 2020-08-27 01:28:08 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-08-27 01:42:46 +0300 |
commit | 2697301045266b40f571eeb2f9c7d8eb220552b4 (patch) | |
tree | eb11fb6fe7ea649dad359753441485589fc29f0d /wqflask/base/trait.py | |
parent | 5992562296aabdd51bc3575f36d16d1c245d9d1f (diff) | |
download | genenetwork2-2697301045266b40f571eeb2f9c7d8eb220552b4.tar.gz |
Replace mysqldb's "escape" with the one from utils.db_tools
Mysqldb's escape returns a binary string. Use utils.db_tools which adds an extra
step of converting the binary string to a string.
Diffstat (limited to 'wqflask/base/trait.py')
-rw-r--r-- | wqflask/base/trait.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/base/trait.py b/wqflask/base/trait.py index 2fd5d725..e3507ae1 100644 --- a/wqflask/base/trait.py +++ b/wqflask/base/trait.py @@ -19,7 +19,7 @@ Redis = get_redis_conn() from wqflask import app import simplejson as json -from MySQLdb import escape_string as escape +from utility.db_tools import escape from pprint import pformat as pf from flask import Flask, g, request, url_for, redirect, make_response, render_template |