From e9717cd6526b9a2e3cbddaed90c18f3797974f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sun, 24 Feb 2019 11:13:40 +0000 Subject: [PATCH] xep_0384: explicitely add 0060 as dep as we also depend on it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- slixmpp_omemo/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slixmpp_omemo/__init__.py b/slixmpp_omemo/__init__.py index be9a181..11d17ab 100644 --- a/slixmpp_omemo/__init__.py +++ b/slixmpp_omemo/__init__.py @@ -152,7 +152,7 @@ class XEP_0384(BasePlugin): name = 'xep_0384' description = 'XEP-0384 OMEMO' - dependencies = {'xep_0163'} + dependencies = {'xep_0060', 'xep_0163'} default_config = { 'data_dir': None, 'storage_backend': None,