From f5a52c52b093918e8b6ae7c42cd319b7c1ebb0e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Tue, 24 Jul 2018 21:49:01 +0200 Subject: [PATCH] Remote control: remove undefined variable --- gajim/remote_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/remote_control.py b/gajim/remote_control.py index 02985fc9e..21e8589d1 100644 --- a/gajim/remote_control.py +++ b/gajim/remote_control.py @@ -583,7 +583,7 @@ class GajimRemote(Server): 'account' """ if not jid: - raise dbus_support.MissingArgument() + raise ValueError('jid is missing') jid = self._get_real_jid(jid, account) try: jid = helpers.parse_jid(jid)