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

Ville Skyttä scop at osuosl.org
Thu Jan 28 21:23:12 UTC 2010


 yum/sqlitesack.py |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit e0acaa87a2981b6c5aa6bbd3a80a7dc739e1f12b
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Thu Jan 28 23:22:31 2010 +0200

    Docstring fixes.

diff --git a/yum/sqlitesack.py b/yum/sqlitesack.py
index 812d765..8452526 100644
--- a/yum/sqlitesack.py
+++ b/yum/sqlitesack.py
@@ -635,20 +635,20 @@ class YumSqlitePackageSack(yumRepo.YumPackageSack):
         return False
 
     def _pkgExcludedRKT(self, repo,pkgKey, pkgtup):
-        ''' Helper function to call _pkgRKNEVRAExcluded.
+        ''' Helper function to call _pkgExcludedRKNEVRA.
             Takes a repo, pkgKey and a package tuple'''
         (n,a,e,v,r) = pkgtup
         return self._pkgExcludedRKNEVRA(repo, pkgKey, n,e,v,r,a)
 
     def _pkgExcludedRKD(self, repo,pkgKey, data):
-        ''' Helper function to call _pkgRKNEVRAExcluded.
+        ''' Helper function to call _pkgExcludedRKNEVRA.
             Takes a repo, pkgKey and a dict of package data'''
         (n,a,e,v,r) = (data['name'], data['arch'],
                        data['epoch'], data['version'], data['release'])
         return self._pkgExcludedRKNEVRA(repo, pkgKey, n,e,v,r,a)
 
     def _pkgExcluded(self, po):
-        ''' Helper function to call _pkgRKNEVRAExcluded.
+        ''' Helper function to call _pkgExcludedRKNEVRA.
             Takes a package object. '''
         return self._pkgExcludedRKT(po.repo, po.pkgKey, po.pkgtup)
 


More information about the Yum-commits mailing list