The problem is that the code tries to convert a string that's already
Unicode to Unicode.

Proposed fix: 
Change the function utf8 in DistUpgradeViewKDE.py to something like this:

def utf8(str):
  if isinstance(str, unicode):
    return str
  return unicode(str, 'UTF-8')

-- 
Upgrade tool crashed
https://bugs.launchpad.net/bugs/106863
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to