no need to assign to local unused var

This commit is contained in:
Nikos Kouremenos 2005-10-29 14:24:32 +00:00
parent b94f13a0eb
commit b43220a6e9
1 changed files with 1 additions and 1 deletions

View File

@ -703,7 +703,7 @@ class NewMessageDialog:
title = _('New Message')
prompt_text = _('Fill in the contact ID of the contact you would like\nto send a chat message to:')
instance = InputDialog(title, prompt_text, is_modal = False, ok_handler = self.new_message_response)
InputDialog(title, prompt_text, is_modal = False, ok_handler = self.new_message_response)
def new_message_response(self, jid):
''' called when ok button is clicked '''