Show
Ignore:
Timestamp:
01/06/07 12:00:50 (23 months ago)
Author:
asterix
Message:

merge changeset from trunk except pyopenssl stuff

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.11/src/groupchat_control.py

    r7677 r7787  
    879879                                for old_file in files: 
    880880                                        if os.path.exists(old_file): 
     881                                                if os.path.exists(files[old_file]): 
     882                                                        # Windows require this 
     883                                                        os.remove(files[old_file]) 
    881884                                                os.rename(old_file, files[old_file]) 
    882885                                self.print_conversation(s, 'info') 
     
    12581261                elif command == 'chat' or command == 'query': 
    12591262                        self.print_conversation(_('Usage: /%s <nickname>, opens a private chat' 
    1260                                 ' window to the specified occupant.') % command, 'info') 
     1263                                ' window with the specified occupant.') % command, 'info') 
    12611264                elif command == 'clear': 
    12621265                        self.print_conversation( 
     
    12871290                elif command == 'msg': 
    12881291                        s = _('Usage: /%s <nickname> [message], opens a private message window' 
    1289                                 'and sends message to the occupant specified by nickname.') % \ 
     1292                                ' and sends message to the occupant specified by nickname.') % \ 
    12901293                                command 
    12911294                        self.print_conversation(s, 'info')