poezio/user: Fix English in docstring
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
c7c3ea49ce
commit
60b935a271
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
# it under the terms of the zlib license. See the COPYING file.
|
# it under the terms of the zlib license. See the COPYING file.
|
||||||
"""
|
"""
|
||||||
Define the user class.
|
Define the user class.
|
||||||
An user is a MUC participant, not a roster contact (see contact.py)
|
A user is a MUC participant, not a roster contact (see contact.py)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
@ -26,7 +26,7 @@ ROLE_DICT = {'': 0, 'none': 0, 'visitor': 1, 'participant': 2, 'moderator': 3}
|
||||||
|
|
||||||
class User:
|
class User:
|
||||||
"""
|
"""
|
||||||
keep trace of an user in a Room
|
keep track of a user in a Room
|
||||||
"""
|
"""
|
||||||
__slots__ = ('last_talked', 'jid', 'chatstate', 'affiliation', 'show',
|
__slots__ = ('last_talked', 'jid', 'chatstate', 'affiliation', 'show',
|
||||||
'status', 'role', 'nick', 'color')
|
'status', 'role', 'nick', 'color')
|
||||||
|
|
Loading…
Reference in a new issue