[yum-cvs] yum/yum __init__.py,1.311,1.312
Tim Lauridsen
timlau at linux.duke.edu
Tue Mar 20 10:19:44 UTC 2007
Update of /home/groups/yum/cvs/yum/yum
In directory login1.linux.duke.edu:/tmp/cvs-serv13569/yum
Modified Files:
__init__.py
Log Message:
fixed TypeError in comps property (fset)
Index: __init__.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/__init__.py,v
retrieving revision 1.311
retrieving revision 1.312
diff -u -r1.311 -r1.312
--- __init__.py 19 Mar 2007 21:53:56 -0000 1.311
+++ __init__.py 20 Mar 2007 10:19:42 -0000 1.312
@@ -509,7 +509,7 @@
fset=lambda self, value: setattr(self, "_up", value),
fdel=lambda self: setattr(self, "_up", None))
comps = property(fget=lambda self: self._getGroups(),
- fset=lambda self, value: self._setGroups(self, value),
+ fset=lambda self, value: self._setGroups(value),
fdel=lambda self: setattr(self, "_comps", None))
More information about the Yum-cvs-commits
mailing list