summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/backends/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/utils.py b/django/db/backends/utils.py
index 81eb8693ac..b5ad5f17a2 100644
--- a/django/db/backends/utils.py
+++ b/django/db/backends/utils.py
@@ -183,7 +183,7 @@ def truncate_name(name, length=None, hash_len=4):
If a quote stripped name contains a username, e.g. USERNAME"."TABLE,
truncate the table portion only.
"""
- match = re.match('([^"]+)"\."([^"]+)', name)
+ match = re.match(r'([^"]+)"\."([^"]+)', name)
table_name = match.group(2) if match else name
if length is None or len(table_name) <= length: