Fix wrong paranthesis. Fixes #4137

This commit is contained in:
Stephan Erb 2008-07-25 10:50:56 +00:00
parent 6cc8cd28e9
commit 4674480e61
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ class HtmlHandler(xml.sax.handler.ContentHandler):
try:
f = urllib2.urlopen(attrs['src'])
except Exception, ex:
gajim.log.debug('Error loading image %s ' % attrs['src'] + str(ex)))
gajim.log.debug('Error loading image %s ' % attrs['src'] + str(ex))
pixbuf = None
alt = attrs.get('alt', 'Broken image')
else: