Fix #2537 (crash on adhoc tab without items)

This commit is contained in:
mathieui 2014-07-06 00:08:43 +02:00
parent 390bb8e2b4
commit cfd344edc3
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -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}