summaryrefslogtreecommitdiffstats
path: root/pym/portage/cache/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/cache/util.py')
-rw-r--r--pym/portage/cache/util.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/portage/cache/util.py b/pym/portage/cache/util.py
index 7b2f1026a..8eee5971d 100644
--- a/pym/portage/cache/util.py
+++ b/pym/portage/cache/util.py
@@ -161,9 +161,9 @@ class quiet_mirroring(object):
class non_quiet_mirroring(quiet_mirroring):
call_update_min=1
- def update(self,key,*arg): print "processed",key
- def exception(self, key, *arg): print "exec",key,arg
- def missing(self,key): print "key %s is missing", key
- def corruption(self,key,*arg): print "corrupt %s:" % key,arg
- def eclass_stale(self,key,*arg):print "stale %s:"%key,arg
+ def update(self,key,*arg): print("processed",key)
+ def exception(self, key, *arg): print("exec",key,arg)
+ def missing(self,key): print("key %s is missing", key)
+ def corruption(self,key,*arg): print("corrupt %s:" % key,arg)
+ def eclass_stale(self,key,*arg):print("stale %s:"%key,arg)