[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-17 Thread Alkis Georgopoulos
A better fix is needed to properly solve the problem (python2 + 3 compatibility, 108 more dbus.String() calls to check...), so I'd better unassign it from me and leave it for someone who's willing to tackle it more thoroughly. Thanks! :) ** Changed in: aptdaemon (Ubuntu) Status: In

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-17 Thread Colin Watson
To recapitulate my position on IRC: the other dbus.String calls aren't relevant. The problem here is that at the point when retrieving information from python-apt, aptdaemon doesn't convert it to the types it requires internally. Worrying about the other dbus.String calls would miss the point

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-17 Thread Launchpad Bug Tracker
This bug was fixed in the package aptdaemon - 0.45+bzr861-0ubuntu4 --- aptdaemon (0.45+bzr861-0ubuntu4) quantal; urgency=low * debian/patches/apt-dbus-text-api.patch: - Convert Origin.label from python-apt API to python-dbus API, for Python 2 compatibility (LP: #978654).

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~alkisg/ubuntu/precise/aptdaemon/aptdaemon-lp978654 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-15 Thread Alkis Georgopoulos
@toda: you changed the bug status to fix committed. That means you're a developer that has solved the problem, and the Ubuntu developers don't need to work on it any more. Is that the case, or you changed it by accident? I'm reverting the status, I'll make a quantal branch merge proposal in a

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~alkisg/ubuntu/quantal/aptdaemon/aptdaemon-lp978654 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-14 Thread Fotis Tsamis
It seems that Alkis is correct! The variable 'value' inside the last_package method (aptdaemon/pkcompat.py, line 670), which is called a little after the 'Check' button is pressed, contains the package name, the available new version, the architecture AND the PPA's description string (separated

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-14 Thread Ubuntu Foundation's Bug Bot
The attachment patch of this bug report has been identified as being a patch. The ubuntu-reviewers team has been subscribed to the bug report so that they can review the patch. In the event that this is in fact not a patch you can resolve this situation by removing the tag 'patch' from the bug

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-14 Thread toda
** Changed in: aptdaemon (Ubuntu) Status: Confirmed = Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-13 Thread Alkis Georgopoulos
I'm wondering if the problem is non-ascii characters in PPA descriptions. Guys any of you have non-ascii characters in the output of this command? sudo apt-key list sudo apt-key list | iconv -f ascii E.g. I have this, which contains greek chars, so it might be what's crashing aptd: pub

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-13 Thread Alkis Georgopoulos
The problem is probably that dbus.String() expects a unicode string, and aptdaemon is sending a utf-8 string. Maybe is should be using value.decode(utf-8) instead: self._last_package = dbus.String(value.decode(utf-8)) Python example: $ python import dbus s=Hi in Greek is Γεια

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-13 Thread rpr nospam
Alkis, the output of sudo apt-key list on my system contains a non- ascii character: pub 2048R/DD7FB8CC 2010-06-28 uid Fabre François (multiboot gpg key) live...@gmail.com sub 2048R/6FECE640 2010-06-28 -- You received this bug notification because you are a member of Ubuntu

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-13 Thread François Rey
Hey I also have the same entry: pub 2048R/DD7FB8CC 2010-06-28 uid Fabre François (multiboot gpg key) live...@gmail.com sub 2048R/6FECE640 2010-06-28 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-05-30 Thread Ubuntu Foundation's Bug Bot
** Changed in: aptdaemon (Ubuntu) Importance: Undecided = Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-05-23 Thread Vic
After upgrading to 12.04 from 11.10 I get this message. When I login using XFCE window mananger I do not get this error, only with the Ubuntu and Ubuntu 2D window manager. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-05-04 Thread Mark Stosberg
I also get notified about this issue after time I login, since I upgrade to 12.04. I don't know what the trigger is. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-05-03 Thread Christan Adéen
The dialog System has encountered an error (Or something similar not 100% sure) is popping up always after boot or waking up from suspend The details of the dialog tells its a duplicate of this bug. . I'm not noticing anything wrong with the system other then the update manager not telling me that

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-05-01 Thread timothy gordon
Every time I install using apt I get the error message and send report to the devs. I have not experienced any ui bugs when the error comes up so its probably some back-end thing that doesnt effect the gui. Timothy Gordon Operator and Holder slashRoot: coffee house and tech dojo 60 Main street

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-25 Thread leonidasem...@gmail.com
My system is a i386 ubuntu beta -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-23 Thread Glauber Franco
My system not is a i386 machine, it is a AMD64 machine. Your report is about a 32bits machine. Will it have some problem with a 64bits machine? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-23 Thread Glauber Franco
Annotation: Search failed ApportVersion: 2.0.1-0ubuntu1 Architecture: i386 Date: Tue Apr 10 07:45:48 2012 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-21 Thread Carlos Carreras
This bug affect me using skype call. acer d255 processor n450. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-21 Thread leonidasem...@gmail.com
** Also affects: aptdaemon Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-20 Thread Sinay
An other problem that occurs with Firefox 11 is the colour distortion when running Youtube. My Ubuntu is 12.04 A, my MB is a Gigabyte P55-UD6, and the video card is a NVIDIA GEForce 8400 GS. Tks. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-16 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: aptdaemon (Ubuntu) Status: New = Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title:

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-04-13 Thread Sebastian Heinlein
** Visibility changed to: Public -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/978654 Title: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not