From 7994507bc3321172a369d5881f2b579a122a3c29 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Thu, 13 Jan 2011 20:34:17 +0100 Subject: Fix /bookmark command on non-MUC tabs --- src/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.py b/src/core.py index 73ba79c6..791394d8 100644 --- a/src/core.py +++ b/src/core.py @@ -1136,7 +1136,7 @@ class Core(object): """ args = arg.split() nick = None - if not isinstance(self.current_tab(), tabs.MucTab): + if len(args) == 0 and not isinstance(self.current_tab(), tabs.MucTab): return if len(args) == 0: room = self.current_tab().get_room() -- cgit v1.2.3