From 3eaa9c97ba5e4aeccb750dbe181d32a3402285ec Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 18 Jan 2006 16:14:20 +0000 Subject: [PATCH] [knuckles] fix typo. Fixes #1246 --- src/gajim.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index 861aee8a7..21e71d85e 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -851,12 +851,12 @@ class Interface: else: gajim.log.debug('gtkpixbuf cannot save other than jpeg and png formats. skipping avatar of %s' % jid) # Generate and save the resized, color avatar - path_to_normal_file = path_to_file + '_notf_size_colored.png' + path_to_normal_file = path_to_file + '_notif_size_colored.png' pixbuf = gtkgui_helpers.get_scaled_pixbuf( gtkgui_helpers.get_pixbuf_from_data(photo_decoded), 'notification') pixbuf.save(path_to_normal_file, 'png') # Generate and save the resized, black and white avatar - path_to_bw_file = path_to_file + '_notf_size_bw.png' + path_to_bw_file = path_to_file + '_notif_size_bw.png' bwbuf = gtkgui_helpers.get_scaled_pixbuf( gtkgui_helpers.make_pixbuf_grayscale(pixbuf), 'notification') bwbuf.save(path_to_bw_file, 'png')