Ticket #4137 (closed defect: fixed)

Opened 3 months ago

Last modified 3 months ago

gajim don't start

Reported by: rabio Owned by:
Priority: highest Milestone: 0.12
Component: None Version: svn
Severity: normal Keywords:
Cc: OS: All

Description

After upgrade to to last svn version (10028) gajim don't start but instead I get this TB:

Traceback (most recent call last):
  File "gajim.py", line 216, in <module>
    import gtkexcepthook
  File "/tmp/gajim/gajim/src/gtkexcepthook.py", line 31, in <module>
    import dialogs
  File "/tmp/gajim/gajim/src/dialogs.py", line 35, in <module>
    import conversation_textview
  File "/tmp/gajim/gajim/src/conversation_textview.py", line 43, in <module>
    from htmltextview import HtmlTextView
  File "/tmp/gajim/gajim/src/htmltextview.py", line 567
    gajim.log.debug('Error loading image %s ' % attrs['src']  + str(ex)))
                                                                        ^
SyntaxError: invalid syntax

Attachments

Change History

Changed 3 months ago by rabio

In 10027 works fine. Only one file changed between those revisions: htmltextview.py

--- src/htmltextview.py	(revision 10027)
+++ src/htmltextview.py	(revision 10028)
@@ -564,7 +564,7 @@
 			try: 
 				f = urllib2.urlopen(attrs['src']) 
 			except Exception, ex: 
-				gajim.log.debug(str('Error loading image %s ' % attrs['src'] + ex)) 
+				gajim.log.debug('Error loading image %s ' % attrs['src']  + str(ex)))
 				pixbuf = None 
 				alt = attrs.get('alt', 'Broken image') 
 			else: 

Changed 3 months ago by anonymous

  • status changed from new to closed
  • resolution set to duplicate

Duplicate of #4134

Changed 3 months ago by steve-e

  • resolution changed from duplicate to fixed
  • milestone set to 0.12

(In [10029]) Fix wrong paranthesis. Fixes #4137

Add/Change #4137 (gajim don't start)

Author



Change Properties
<Author field>
Action
as closed
Next status will be 'reopened'
 
Note: See TracTickets for help on using tickets.