diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-09-11 22:26:19 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-09-11 22:26:19 +0000 |
commit | e5f82cdacdac6f446faf3138f8eeca7f66a77b90 (patch) | |
tree | d747a7019d4940de5ef0908f6cb0dbc39678ef2f /src | |
parent | ad33a28e2844939649903fe4f552439715f1531c (diff) | |
download | poezio-e5f82cdacdac6f446faf3138f8eeca7f66a77b90.tar.gz poezio-e5f82cdacdac6f446faf3138f8eeca7f66a77b90.tar.bz2 poezio-e5f82cdacdac6f446faf3138f8eeca7f66a77b90.tar.xz poezio-e5f82cdacdac6f446faf3138f8eeca7f66a77b90.zip |
last words are collected in the last 40 messages
Diffstat (limited to 'src')
-rw-r--r-- | src/gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -527,7 +527,7 @@ class Gui(object): # build the list of the recent words char_we_dont_want = [',', '(', ')', '.'] words = list() - for msg in self.current_room().messages[:-9:-1]: + for msg in self.current_room().messages[:-40:-1]: if not msg: continue for word in msg.txt.split(): |