summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-02 21:09:35 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-02 21:09:35 +0000
commit20fe60198270654c9c6be5c9fd668fadd1d303e3 (patch)
tree5486cc463aa705c6bd5d693254f6e6476ab2a0cf
parentRemove print() usage. (trunk r15494) (diff)
downloadportage-multirepo-20fe60198270654c9c6be5c9fd668fadd1d303e3.tar.gz
portage-multirepo-20fe60198270654c9c6be5c9fd668fadd1d303e3.tar.bz2
portage-multirepo-20fe60198270654c9c6be5c9fd668fadd1d303e3.zip
Remove print() usage. (trunk r15495)
svn path=/main/branches/2.1.7/; revision=15696
-rw-r--r--pym/portage/dbapi/bintree.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py
index cdc702e4..0821b7e5 100644
--- a/pym/portage/dbapi/bintree.py
+++ b/pym/portage/dbapi/bintree.py
@@ -2,8 +2,6 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-from __future__ import print_function
-
__all__ = ["bindbapi", "binarytree"]
import portage
@@ -865,7 +863,6 @@ class binarytree(object):
mykey = portage.cpv_getkey(fullpkg)
try:
# invalid tbz2's can hurt things.
- #print "cpv_inject("+str(fullpkg)+")"
self.dbapi.cpv_inject(fullpkg)
remote_metadata = self.__remotepkgs[mypkg]
for k, v in remote_metadata.items():
@@ -882,7 +879,6 @@ class binarytree(object):
remote_metadata.pop(k, None)
self._remotepkgs[fullpkg] = remote_metadata
- #print " -- Injected"
except SystemExit as e:
raise
except:
@@ -1148,7 +1144,6 @@ class binarytree(object):
def gettbz2(self, pkgname):
"""Fetches the package from a remote site, if necessary. Attempts to
resume if the file appears to be partially downloaded."""
- print("Fetching '"+str(pkgname)+"'")
tbz2_path = self.getname(pkgname)
tbz2name = os.path.basename(tbz2_path)
resume = False