summaryrefslogtreecommitdiff
path: root/poezio/plugin_e2ee.py
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2019-06-06 14:19:03 +0200
committerMaxime “pep” Buquet <pep@bouah.net>2019-07-01 19:42:45 +0200
commit47909c4dcfe005191f16e40c1a29ac5d9b425fcc (patch)
treef7b8fdd805d44414c4befe9ed77781d7fdb23790 /poezio/plugin_e2ee.py
parentd56d44225316652f8a818771c661c6f2463eb23f (diff)
downloadpoezio-47909c4dcfe005191f16e40c1a29ac5d9b425fcc.tar.gz
poezio-47909c4dcfe005191f16e40c1a29ac5d9b425fcc.tar.bz2
poezio-47909c4dcfe005191f16e40c1a29ac5d9b425fcc.tar.xz
poezio-47909c4dcfe005191f16e40c1a29ac5d9b425fcc.zip
e2ee api: Add space before encryption name in status bar
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'poezio/plugin_e2ee.py')
-rw-r--r--poezio/plugin_e2ee.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py
index 38ada42f..c94f5ede 100644
--- a/poezio/plugin_e2ee.py
+++ b/poezio/plugin_e2ee.py
@@ -98,7 +98,7 @@ class E2EEPlugin(BasePlugin):
return ""
if jid in self._enabled_tabs:
- return self.encryption_short_name
+ return " " + self.encryption_short_name
return ""
def _toggle_tab(self, _input: str) -> None: