summaryrefslogtreecommitdiff
path: root/src/tabs/muctab.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-04-29 03:12:57 +0200
committermathieui <mathieui@mathieui.net>2014-04-29 03:12:57 +0200
commit793b78f0090d2e45e49cab9808b40f03a0b20e02 (patch)
treef08ca940635fea602f7dfadf6f4720e7d69347b7 /src/tabs/muctab.py
parent6391d97b3af266fe5e348283196bcb7f1ec78c7c (diff)
downloadpoezio-793b78f0090d2e45e49cab9808b40f03a0b20e02.tar.gz
poezio-793b78f0090d2e45e49cab9808b40f03a0b20e02.tar.bz2
poezio-793b78f0090d2e45e49cab9808b40f03a0b20e02.tar.xz
poezio-793b78f0090d2e45e49cab9808b40f03a0b20e02.zip
Fix a traceback in /topic (with no argument)
Diffstat (limited to 'src/tabs/muctab.py')
-rw-r--r--src/tabs/muctab.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py
index 500ea541..2ea7fe1f 100644
--- a/src/tabs/muctab.py
+++ b/src/tabs/muctab.py
@@ -534,8 +534,8 @@ class MucTab(ChatTab):
if not arg.strip():
self._text_buffer.add_message(
_("\x19%s}The subject of the room is: %s") %
- dump_tuple(get_theme().COLOR_INFORMATION_TEXT,
- self.topic))
+ (dump_tuple(get_theme().COLOR_INFORMATION_TEXT),
+ self.topic))
self.refresh()
return
subject = arg