Re: [Yum-devel] [PATCH] Fix unicode problems with grpid

2011-05-26 Thread Ville-Pekka Vainio
to, 2011-05-26 kello 10:46 -0400, James Antill kirjoitti: > On Thu, 2011-05-26 at 17:38 +0300, Ville-Pekka Vainio wrote: > > Running yum groupremove with a group name which does not exist and > > includes unicode characters raises a UnicodeDecodeError. > > > > Pass grpid to to_unicode before print

Re: [Yum-devel] [PATCH] Fix unicode problems with grpid

2011-05-26 Thread James Antill
On Thu, 2011-05-26 at 17:38 +0300, Ville-Pekka Vainio wrote: > Running yum groupremove with a group name which does not exist and > includes unicode characters raises a UnicodeDecodeError. > > Pass grpid to to_unicode before printing it to avoid errors like this. ACK. __

[Yum-devel] [PATCH] Fix unicode problems with grpid

2011-05-26 Thread Ville-Pekka Vainio
Running yum groupremove with a group name which does not exist and includes unicode characters raises a UnicodeDecodeError. Pass grpid to to_unicode before printing it to avoid errors like this. --- yum/__init__.py | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --gi