summaryrefslogtreecommitdiff
path: root/sqlparse/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlparse/utils.py')
-rw-r--r--sqlparse/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/utils.py b/sqlparse/utils.py
index 299a84c..512f038 100644
--- a/sqlparse/utils.py
+++ b/sqlparse/utils.py
@@ -55,7 +55,7 @@ def remove_quotes(val):
"""Helper that removes surrounding quotes from strings."""
if val is None:
return
- if val[0] in ('"', "'") and val[0] == val[-1]:
+ if val[0] in ('"', "'", '`') and val[0] == val[-1]:
val = val[1:-1]
return val