diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2019-05-11 18:46:12 +0100 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-05-11 18:46:12 +0100 |
commit | 1a825de020cb12aa3c17b23c46e7ae975ec3b977 (patch) | |
tree | 676dd2b8fbc81f47751df9bad2325caedbc9c0c0 /plugins | |
parent | 5b35bde9069bfc0b5cbc34c9430902396794d804 (diff) | |
download | poezio-1a825de020cb12aa3c17b23c46e7ae975ec3b977.tar.gz poezio-1a825de020cb12aa3c17b23c46e7ae975ec3b977.tar.bz2 poezio-1a825de020cb12aa3c17b23c46e7ae975ec3b977.tar.xz poezio-1a825de020cb12aa3c17b23c46e7ae975ec3b977.zip |
plugins/ping: Import missing JID value (thanks madhur, and pylint)
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ping.py b/plugins/ping.py index b9bad4fe..b0c115b2 100644 --- a/plugins/ping.py +++ b/plugins/ping.py @@ -22,7 +22,7 @@ Command the current interlocutor. """ -from slixmpp import InvalidJID +from slixmpp import InvalidJID, JID from poezio.decorators import command_args_parser from poezio.plugin import BasePlugin from poezio.roster import roster |