Seth Vidal 017b692
diff --git a/rpmUtils/transaction.py b/rpmUtils/transaction.py
Seth Vidal 017b692
index c5167d3..61d7ec0 100644
Seth Vidal 017b692
--- a/rpmUtils/transaction.py
Seth Vidal 017b692
+++ b/rpmUtils/transaction.py
Seth Vidal 017b692
@@ -13,7 +13,6 @@
Seth Vidal 017b692
 
Seth Vidal 017b692
 import rpm
Seth Vidal 017b692
 import miscutils
Seth Vidal 017b692
-from yum.i18n import to_str
Seth Vidal 017b692
 
Seth Vidal 017b692
 read_ts = None
Seth Vidal 017b692
 ts = None
Seth Vidal 017b692
@@ -56,7 +55,7 @@ class TransactionWrapper:
Seth Vidal 017b692
             #  Newer rpm (4.8.0+) has problem objects, older have just strings.
Seth Vidal 017b692
             #  Should probably move to using the new objects, when we can. For
Seth Vidal 017b692
             # now just be compatible.
Seth Vidal 017b692
-            results.append(to_str(prob))
Seth Vidal 017b692
+            results.append(str(prob))
Seth Vidal 017b692
 
Seth Vidal 017b692
         return results
Seth Vidal 017b692