From e7b0ea6dddf6b48120b3cc2f146eb7a4008a9dd6 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@cd1c1023-2f26-0410-ae45-c471fc1f0318> Date: Sat, 1 Mar 2008 15:48:45 +0000 Subject: [PATCH] remove debugging output git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1355 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- libraries/entropy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/entropy.py b/libraries/entropy.py index e7ffc6c27..917b74888 100644 --- a/libraries/entropy.py +++ b/libraries/entropy.py @@ -6072,7 +6072,7 @@ class TriggerInterface: # we need to fix ROOT= if it's set inside environment bz2envfile = os.path.join(ebuild_path,"environment.bz2") if os.path.isfile(bz2envfile) and os.path.isdir(myroot): - print "found",bz2envfile,myroot + #print "found",bz2envfile,myroot import bz2 envfile = self.Entropy.entropyTools.unpackBzip2(bz2envfile) bzf = bz2.BZ2File(bz2envfile,"w") @@ -6080,9 +6080,9 @@ class TriggerInterface: line = f.readline() while line: if line.startswith("ROOT="): - print "found ROOT ::: ",line + #print "found ROOT ::: ",line line = "ROOT=%s\n" % (myroot,) - print "CHANGED ROOT ::: ",line + #print "CHANGED ROOT ::: ",line bzf.write(line) line = f.readline() f.close()