[yum-cvs] yum/yum repos.py,1.99,1.100

Seth Vidal skvidal at linux.duke.edu
Fri Sep 29 04:56:11 UTC 2006


Update of /home/groups/yum/cvs/yum/yum
In directory login1.linux.duke.edu:/tmp/cvs-serv15354/yum

Modified Files:
	repos.py 
Log Message:

make excludes (and who knows how many other things) work again. This,
however, may not be the correct fix - willing to roll it back out


Index: repos.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/repos.py,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- repos.py	3 Sep 2006 21:34:56 -0000	1.99
+++ repos.py	29 Sep 2006 04:56:09 -0000	1.100
@@ -234,7 +234,7 @@
         setattr(self, key, value)
 
     def getAttribute(self, key):
-        if key in self.setkeys and hasattr(self, key):
+        if key in self.setkeys or hasattr(self, key):
             return getattr(self, key)
         return None
 




More information about the Yum-cvs-commits mailing list