diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-08-01 13:38:12 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-08-01 13:38:12 +0200 |
commit | 3ec9e80de48225c7f27c19cdc0546762c042d0d1 (patch) | |
tree | d7f3cbba4de7ce2427c5da05c51a58bc8c8ce6c2 /src/tabs/basetabs.py | |
parent | d84071a80454b1edbe6497eda5e23365bd0158a4 (diff) | |
download | poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.tar.gz poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.tar.bz2 poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.tar.xz poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.zip |
Little comments fix
Diffstat (limited to 'src/tabs/basetabs.py')
-rw-r--r-- | src/tabs/basetabs.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tabs/basetabs.py b/src/tabs/basetabs.py index 95e47e4e..5be8a9d1 100644 --- a/src/tabs/basetabs.py +++ b/src/tabs/basetabs.py @@ -447,12 +447,9 @@ class ChatTab(Tab): self.text_win = None self._text_buffer = TextBuffer() self.chatstate = None # can be "active", "composing", "paused", "gone", "inactive" - # We keep a weakref of the event that will set our chatstate to "paused", so that + # We keep a reference of the event that will set our chatstate to "paused", so that # we can delete it or change it if we need to self.timed_event_paused = None - # if that’s None, then no paused chatstate was sent recently - # if that’s a weakref returning None, then a paused chatstate was sent - # since the last input # Keeps the last sent message to complete it easily in completion_correct, and to replace it. self.last_sent_message = None self.key_func['M-v'] = self.move_separator |