Show
Ignore:
Timestamp:
08/30/07 00:05:28 (15 months ago)
Author:
roidelapluie
Message:

Call beep command instead of print '\a' <- doesn't work. Fix #909.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.11.1/src/common/helpers.py

    r8601 r8607  
    463463def play_sound_file(path_to_soundfile): 
    464464        if path_to_soundfile == 'beep': 
    465                 print '\a' # make a speaker beep 
     465                exec_command('beep') 
    466466                return 
    467467        if path_to_soundfile is None or not os.path.exists(path_to_soundfile):