# HG changeset patch
# User Goffi <goffi@goffi.org>
# Date 1627933642 -7200
# Node ID 422049bb81d3a540d9eb5a6d502cd3fdec23c619
# Parent  443b3a784eba98cd2ca09518d8300618b2e84acb
plugin XEP-0346: fix deprecated import

diff -r 443b3a784eba -r 422049bb81d3 sat/plugins/plugin_xep_0346.py
--- a/sat/plugins/plugin_xep_0346.py	Mon Aug 02 21:47:16 2021 +0200
+++ b/sat/plugins/plugin_xep_0346.py	Mon Aug 02 21:47:22 2021 +0200
@@ -16,7 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-from collections import Iterable
+from collections.abc import Iterable
 import itertools
 from typing import Optional
 from zope.interface import implementer