diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-07-20 21:50:41 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-07-20 21:50:41 +0000 |
commit | 2c1a05a1531ae99c699aeb90325b1783fd927c20 (patch) | |
tree | b6dcacc9a1deee73738be9efbdeb8c53eea5339a /src | |
parent | 482aaf1aaf0eac44c42ce56b62f2c6f1dab64589 (diff) | |
download | poezio-2c1a05a1531ae99c699aeb90325b1783fd927c20.tar.gz poezio-2c1a05a1531ae99c699aeb90325b1783fd927c20.tar.bz2 poezio-2c1a05a1531ae99c699aeb90325b1783fd927c20.tar.xz poezio-2c1a05a1531ae99c699aeb90325b1783fd927c20.zip |
add gapan to THANKS and fix Makefile one last time
Diffstat (limited to 'src')
-rw-r--r-- | src/gui.py | 2 | ||||
-rw-r--r-- | src/multiuserchat.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -264,7 +264,7 @@ class Gui(object): # build the list of the recent words char_we_dont_want = [',', '(', ')', '.'] words = list() - for msg in self.current_room().messages[:-6:-1]: + for msg in self.current_room().messages[:-9:-1]: for word in msg.txt.split(): for char in char_we_dont_want: # remove the chars we don't want word = word.replace(char, '') diff --git a/src/multiuserchat.py b/src/multiuserchat.py index 89001cd4..a64b5796 100644 --- a/src/multiuserchat.py +++ b/src/multiuserchat.py @@ -304,7 +304,7 @@ class MultiUserChat(object): qp = iq_obj.getTag('query') if config.get('send_poezio_info', 'true') == 'true': qp.setTagData('name', 'Poezio') - qp.setTagData('version', '0.6.2 beta') + qp.setTagData('version', '0.6.2') else: qp.setTagData('name', 'Unknown') qp.setTagData('version', 'Unknown') |