#1531: gtk ui not working after upgrade
----------------------+-----------------------------------------------------
Reporter: matthieu | Owner:
Type: bug | Status: pending
Priority: major | Milestone: 1.3.x
Component: gtkui | Version: 1.3.5
Keywords: |
----------------------+-----------------------------------------------------
Changes (by Cas):
* status: new => pending
Comment:
I recently fixed a very similar issue in the [http://forum.deluge-
torrent.org/viewtopic.php?f=7&t=41135 forum] and I believe it is a
component of the several issues covered in #2116. This fix will be
committed to git but it would be useful if someone can report whether this
helps them also.
{{{
@@ -164,7 +164,7 @@
t = s.decode("utf8")
if len(t) != len(s):
s = t
- except UnicodeEncodeError:
+ except UnicodeDecodeError:
pass
return (s, colon+n)
@@ -223,7 +223,7 @@
t = s.decode("utf8")
if len(t) != len(s):
s = t
- except UnicodeEncodeError:
+ except UnicodeDecodeError:
pass
return (s, f+1+slen)
return f
}}}
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1531#comment:13>
Deluge <http://deluge-torrent.org/>
Deluge project
--
You received this message because you are subscribed to the Google Groups
"Deluge Dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/deluge-dev?hl=en.