[yum-git] yum/__init__.py yum.spec yum/sqlitesack.py

Seth Vidal skvidal at linux.duke.edu
Mon Mar 3 18:01:45 UTC 2008


 yum.spec          |    5 ++++-
 yum/__init__.py   |    2 +-
 yum/sqlitesack.py |    2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 88600193f284f07078c371550b08bc5f460ef4a9
Author: Seth Vidal <skvidal at fedoraproject.org>
Date:   Mon Mar 3 13:00:42 2008 -0500

    bump version number
    fix traceback due to one-key-off-typo in matchPackageNames()

diff --git a/yum.spec b/yum.spec
index 0887cc3..d818616 100644
--- a/yum.spec
+++ b/yum.spec
@@ -1,6 +1,6 @@
 Summary: RPM installer/updater
 Name: yum
-Version: 3.2.11
+Version: 3.2.12
 Release: 1
 License: GPL
 Group: System Environment/Base
@@ -98,6 +98,9 @@ exit 0
 %{_mandir}/man*/yum-updatesd*
 
 %changelog
+* Mon Mar  3 2008 Seth Vidal <skvidal at fedoraproject.org>
+- 3.2.12
+
 * Fri Feb  8 2008 Seth Vidal <skvidal at fedoraproject.org>
 - 3.2.11
 * Sun Jan 27 2008 James Bowes <jbowes at redhat.com>
diff --git a/yum/__init__.py b/yum/__init__.py
index 6a8a741..cd449db 100644
--- a/yum/__init__.py
+++ b/yum/__init__.py
@@ -68,7 +68,7 @@ import string
 
 from urlgrabber.grabber import default_grabber as urlgrab
 
-__version__ = '3.2.11'
+__version__ = '3.2.12'
 
 class YumBase(depsolve.Depsolve):
     """This is a primary structure and base class. It houses the objects and
diff --git a/yum/sqlitesack.py b/yum/sqlitesack.py
index 88ef3c8..6027b5b 100644
--- a/yum/sqlitesack.py
+++ b/yum/sqlitesack.py
@@ -848,7 +848,7 @@ class YumSqlitePackageSack(yumRepo.YumPackageSack):
                 pmatches = self._sql_pkgKey2po(rep, cur)
                 if len(pmatches):
                     unmatched.remove(p)
-                matches.extend(pmatches)
+                matched.extend(pmatches)
 
         exactmatch = misc.unique(exactmatch)
         matched = misc.unique(matched)



More information about the Yum-cvs-commits mailing list