Mercurial > libervia-backend
comparison frontends/src/quick_frontend/quick_chat_list.py @ 587:952322b1d490
Remove trailing whitespaces.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 18 Jan 2013 17:55:34 +0100 |
parents | ca13633d3b6b |
children | 84a6e83157c2 |
comparison
equal
deleted
inserted
replaced
586:6a718ede8be1 | 587:952322b1d490 |
---|---|
23 | 23 |
24 | 24 |
25 class QuickChatList(dict): | 25 class QuickChatList(dict): |
26 """This class is used to manage the list of chat windows. | 26 """This class is used to manage the list of chat windows. |
27 It act as a dict, but create a chat window when the name is found for the first time.""" | 27 It act as a dict, but create a chat window when the name is found for the first time.""" |
28 | 28 |
29 def __init__(self, host): | 29 def __init__(self, host): |
30 dict.__init__(self) | 30 dict.__init__(self) |
31 self.host = host | 31 self.host = host |
32 | 32 |
33 def __getitem__(self,to_jid): | 33 def __getitem__(self,to_jid): |