---
rpmUtils/arch.py |2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/rpmUtils/arch.py b/rpmUtils/arch.py
index 72cba60..6082005 100644
--- a/rpmUtils/arch.py
+++ b/rpmUtils/arch.py
@@ -359,6 +359,8 @@ def getBaseArch(myarch=None):
return "sparc"
elif myarch.
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
---
yum/rpmtrans.py | 77 +-
1 files changed, 53 insertions(+), 24 deletions(-)
diff --git a/yum/rpmtrans.py b/yum/rpmtrans.py
index 08bf99d..5c35486 100644
--- a/yum/rpmtrans.py
+++ b/yum/rpmtrans.py
@@ -272,21 +272,58 @@ class RPMTransaction
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.
__
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