Changeset 6335

Show
Ignore:
Timestamp:
05/16/06 20:49:34 (3 years ago)
Author:
jim++
Message:

Deal with non utf8 status messages in change status message dialog

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/dialogs.py

    r6327 r6335  
    350350                        if not msg_name: # msg_name was '' 
    351351                                msg_name = msg_text 
     352                        msg_name = msg_name.decode('utf-8') 
     353                        msg_text = msg_text.decode('utf-8') 
    352354                        iter_ = self.message_liststore.append((msg_name,)) 
    353355