diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-08 22:11:23 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-08 22:11:23 +0000 |
commit | 26fc1bc9c6f96dfa903477e2c1f40a1a6bd714e6 (patch) | |
tree | ada647fae10b4cf0ddc64ce598b883745e8604cb | |
parent | 704d5fc9c6410cfa10b3e0ff551499b4635d4fe9 (diff) | |
download | portage-26fc1bc9c6f96dfa903477e2c1f40a1a6bd714e6.tar.gz portage-26fc1bc9c6f96dfa903477e2c1f40a1a6bd714e6.tar.bz2 portage-26fc1bc9c6f96dfa903477e2c1f40a1a6bd714e6.zip |
Don't do:
Calculating dependencies |Fetching binary packages info...
but instead put "Fetching ..." on it's own line.
(branches/prefix r8461)
svn path=/main/trunk/; revision=8466
-rw-r--r-- | pym/portage/dbapi/bintree.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 9cb54274c..45cd80463 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -627,6 +627,7 @@ class binarytree(object): chunk_size = 8 except (ValueError, KeyError): chunk_size = 3000 + writemsg_stdout("\n\n") writemsg_stdout(green("Fetching binary packages info...\n")) self.remotepkgs = portage.getbinpkg.dir_get_metadata( self.settings["PORTAGE_BINHOST"], chunk_size=chunk_size) |