*** This bug is a duplicate of bug 154771 ***
https://bugs.launchpad.net/bugs/154771
** Summary changed:
- adept want to update an aktual gibsy 7.10 kubuntu; update failed with error
message
+ adept want to update an aktual gutsy 7.10 kubuntu; update failed with error
message
--
adept wan
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