[yum-commits] Branch 'yum-3_2_X' - yum/__init__.py

Tim Lauridsen timlau at osuosl.org
Tue Feb 9 12:26:39 UTC 2010


 yum/__init__.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 72d0335107f1c0e899b5cae59ddca4e466911760
Author: Tim Lauridsen <timlau at fedoraproject.org>
Date:   Tue Feb 9 13:27:03 2010 +0100

    list -> tuple

diff --git a/yum/__init__.py b/yum/__init__.py
index d77d0e0..72dbc4d 100644
--- a/yum/__init__.py
+++ b/yum/__init__.py
@@ -4097,7 +4097,7 @@ class YumBase(depsolve.Depsolve):
                                 continue
                             if numleft == 0:
                                 break
-                            toremove.append([po,m])
+                            toremove.append((po,m))
                             numleft -= 1
                         
         for po,rel in toremove:


More information about the Yum-commits mailing list