summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-07-20 23:03:04 +0530
committerGitHub <noreply@github.com>2020-07-20 13:33:04 -0400
commita7b06a81f02ed97975f45e0abd70b731c686fc86 (patch)
tree10652c60f806376dfdac6541fe7ad73bbffaefa9 /synapse/util
parentChange sample config's postgres user to synapse_user (#7889) (diff)
downloadsynapse-a7b06a81f02ed97975f45e0abd70b731c686fc86.tar.xz
Fix deprecation warning: import ABC from collections.abc (#7892)
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/stringutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/stringutils.py b/synapse/util/stringutils.py

index 08c86e92b8..2e2b40a426 100644 --- a/synapse/util/stringutils.py +++ b/synapse/util/stringutils.py
@@ -17,7 +17,7 @@ import itertools import random import re import string -from collections import Iterable +from collections.abc import Iterable from synapse.api.errors import Codes, SynapseError