diff options
author | mathieui <mathieui@mathieui.net> | 2019-08-23 23:25:59 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-12-27 18:58:48 +0100 |
commit | b1e913d772cf748719ef5313e6655f46855f180d (patch) | |
tree | 3a5278ba77c506a29932eb6dc37388ebcbb7df7e | |
parent | e94ee52c107ed42478f086f40dd2f7f99e4b2f22 (diff) | |
download | poezio-b1e913d772cf748719ef5313e6655f46855f180d.tar.gz poezio-b1e913d772cf748719ef5313e6655f46855f180d.tar.bz2 poezio-b1e913d772cf748719ef5313e6655f46855f180d.tar.xz poezio-b1e913d772cf748719ef5313e6655f46855f180d.zip |
omemo: fix indentation of one line
-rw-r--r-- | poezio/plugin_e2ee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index 9c0fa39c..ebb31078 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -197,7 +197,7 @@ class E2EEPlugin(BasePlugin): has_eme = False if message.xml.find('{%s}%s' % (EME_NS, EME_TAG)) is not None and \ - message['eme']['namespace'] == self.eme_ns: + message['eme']['namespace'] == self.eme_ns: has_eme = True has_encrypted_tag = False |