diff options
author | mathieui <mathieui@mathieui.net> | 2014-12-19 19:20:18 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-12-19 19:20:18 +0100 |
commit | f0dac14e32b7c087e20aad69cc10d3fb94a9d69b (patch) | |
tree | 5c56885d20d6420d4cb427a82b8af081c911b67e /src/tabs | |
parent | a4858f934297191b4fc1b6a868f3d1c066535056 (diff) | |
download | poezio-f0dac14e32b7c087e20aad69cc10d3fb94a9d69b.tar.gz poezio-f0dac14e32b7c087e20aad69cc10d3fb94a9d69b.tar.bz2 poezio-f0dac14e32b7c087e20aad69cc10d3fb94a9d69b.tar.xz poezio-f0dac14e32b7c087e20aad69cc10d3fb94a9d69b.zip |
Fix #2861 (fix /ignore and /unignore (5/78))
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/muctab.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py index a49c1fd9..81a3367f 100644 --- a/src/tabs/muctab.py +++ b/src/tabs/muctab.py @@ -779,7 +779,7 @@ class MucTab(ChatTab): """ /ignore <nick> """ - if arg is None: + if args is None: return self.core.command_help('ignore') nick = args[0] @@ -797,7 +797,7 @@ class MucTab(ChatTab): """ /unignore <nick> """ - if arg is None: + if args is None: return self.core.command_help('unignore') nick = args[0] |