fix typo. 'contacts' -> 'contact'

This commit is contained in:
Zhenchao Li 2010-06-01 15:14:18 +08:00
parent 01c1465dfb
commit b7048aa0da
1 changed files with 2 additions and 2 deletions

View File

@ -304,9 +304,9 @@ class FileTransfersWindow:
return False return False
self.add_transfer(account, contact, file_props) self.add_transfer(account, contact, file_props)
if contact.supports(NS_JINGLE_FILE_TRANSFER): if contact.supports(NS_JINGLE_FILE_TRANSFER):
log.info("contacts supports jingle file transfer") log.info("contact supports jingle file transfer")
else: else:
log.info("contacts does not support jingle file transfer") log.info("contact does not support jingle file transfer")
gajim.connections[account].send_file_request(file_props) gajim.connections[account].send_file_request(file_props)
return True return True