From cfd344edc3493b2db804a4eb5efda49e754fb1ed Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 6 Jul 2014 00:08:43 +0200 Subject: Fix #2537 (crash on adhoc tab without items) --- src/tabs/adhoc_commands_list.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/tabs/adhoc_commands_list.py b/src/tabs/adhoc_commands_list.py index 76cd941a..87ee0c52 100644 --- a/src/tabs/adhoc_commands_list.py +++ b/src/tabs/adhoc_commands_list.py @@ -25,6 +25,8 @@ class AdhocCommandsListTab(ListTab): self.key_func['^M'] = self.execute_selected_command def execute_selected_command(self): + if not self.listview or not self.listview.get_selected_row(): + return node, name, jid = self.listview.get_selected_row() session = {'next': self.core.on_next_adhoc_step, 'error': self.core.on_adhoc_error} -- cgit v1.2.3