From 38b11bf150ac556116bb195d285f57fc8314e2c6 Mon Sep 17 00:00:00 2001 From: Evgeniy Popov Date: Tue, 21 May 2013 22:11:59 +0600 Subject: [PATCH] ImagePlugin. Closes #24 --- image/image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image/image.py b/image/image.py index 9614ffa..b0a7492 100644 --- a/image/image.py +++ b/image/image.py @@ -128,8 +128,8 @@ class Base(object): msg = 'HTML image' extension = os.path.splitext(os.path.split(path_to_file)[1])[1] \ .lower()[1:] - xhtml = ' img' % ( - extension, img) + xhtml = '
img \ + ' % (extension, img) self.chat_control.send_message(message=msg, xhtml=xhtml) self.chat_control.msg_textview.grab_focus()