From d6d2d9250918ccd7ca35545db93808a4fd2fbb74 Mon Sep 17 00:00:00 2001 From: lxnay Date: Thu, 10 Apr 2008 01:50:14 +0000 Subject: [PATCH] add debugging output git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1655 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- libraries/databaseTools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/databaseTools.py b/libraries/databaseTools.py index 284b75631..6b3ba8b8a 100644 --- a/libraries/databaseTools.py +++ b/libraries/databaseTools.py @@ -469,6 +469,7 @@ class etpDatabase: # 4) automatically run quickpkg() to build the new binary and # tainted binaries owning tainted iddependency and taint database def runTreeUpdatesMoveAction(self, move_command): + key_from = move_command[0] key_to = move_command[1] cat_to = key_to.split("/")[0] @@ -528,8 +529,7 @@ class etpDatabase: for idpackage_owner in iddependencies_idpackages: myatom = self.retrieveAtom(idpackage_owner) - myatom = mydep.replace(key_from,key_to) - print "replaced",myatom,"from",key_from,"to",key_to + myatom = myatom.replace(key_from,key_to) quickpkg_queue.add(myatom) # quickpkg package and packages owning it as a dependency self.runTreeUpdatesQuickpkgAction(quickpkg_queue)