diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-12-04 16:42:15 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-12-04 16:42:15 +0100 |
commit | 6f9f1796b30cfe5a5de54ade96292b3764b82834 (patch) | |
tree | 49eec10ed3308ef53ef9923f24aa971f11eab4d5 /src/tabs | |
parent | d1c4c7cf587d016946bd3537a49d9543d8a4664d (diff) | |
download | poezio-6f9f1796b30cfe5a5de54ade96292b3764b82834.tar.gz poezio-6f9f1796b30cfe5a5de54ade96292b3764b82834.tar.bz2 poezio-6f9f1796b30cfe5a5de54ade96292b3764b82834.tar.xz poezio-6f9f1796b30cfe5a5de54ade96292b3764b82834.zip |
fix wrong argument name (2/78)
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/muctab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py index 2cfc8f40..a49c1fd9 100644 --- a/src/tabs/muctab.py +++ b/src/tabs/muctab.py @@ -389,7 +389,7 @@ class MucTab(ChatTab): @command_args_parser.raw def command_cycle(self, msg): """/cycle [reason]""" - self.command_part(args) + self.command_part(msg) self.disconnect() self.user_win.pos = 0 self.core.disable_private_tabs(self.name) |