[yum-cvs] yum/yum __init__.py,1.276,1.277

James Bowes jbowes at linux.duke.edu
Mon Feb 5 14:38:10 UTC 2007


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

Modified Files:
	__init__.py 
Log Message:
use the old depsolver for now, since the new one will like, not work.

Index: __init__.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/__init__.py,v
retrieving revision 1.276
retrieving revision 1.277
diff -u -r1.276 -r1.277
--- __init__.py	4 Feb 2007 17:32:54 -0000	1.276
+++ __init__.py	5 Feb 2007 14:38:08 -0000	1.277
@@ -54,14 +54,14 @@
 
 __version__ = '3.1.0'
 
-class YumBase(depsolve.AnacondaDepsolver):
+class YumBase(depsolve.Depsolve):
     """This is a primary structure and base class. It houses the objects and
        methods needed to perform most things in yum. It is almost an abstract
        class in that you will need to add your own class above it for most
        real use."""
     
     def __init__(self):
-        depsolve.AnacondaDepsolver.__init__(self)
+        depsolve.Depsolve.__init__(self)
         self.tsInfo = None
         self.rpmdb = None
         self.up = None




More information about the Yum-cvs-commits mailing list