diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-08-02 18:56:47 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-08-02 18:56:47 +0000 |
commit | 6e336929c862cfcef5da01a12fbc9bc3f6104089 (patch) | |
tree | bfe070e44362d00262df07692b73319857ae6f0a | |
parent | 8c97ac72d7b2f247637ff8015aa45f221d34feb1 (diff) | |
download | portage-6e336929c862cfcef5da01a12fbc9bc3f6104089.tar.gz portage-6e336929c862cfcef5da01a12fbc9bc3f6104089.tar.bz2 portage-6e336929c862cfcef5da01a12fbc9bc3f6104089.zip |
Remove the unnecessary "Previously fetched" portion of the disfiles checksum output for bug #142271.
svn path=/main/trunk/; revision=4089
-rw-r--r-- | pym/portage.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py index ff821bcfa..7aef151e0 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1999,8 +1999,8 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", eout.quiet = \ mysettings.get("PORTAGE_QUIET", None) == "1" for digest_name in mydigests[myfile]: - eout.ebegin("Previously fetched:" + \ - " %s %s ;-)" % (myfile, digest_name)) + eout.ebegin( + "%s %s ;-)" % (myfile, digest_name)) eout.eend(0) continue # fetch any remaining files |