From: Zac Medico Date: Thu, 23 Nov 2006 12:10:22 +0000 (-0000) Subject: For bug #156014, always round up the next kB so that it doesn't show 0 kB when some... X-Git-Tag: v2.1.2~428 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5bebada2dadf920d0fdf10739fbcd731ae2fb53b;p=portage.git For bug #156014, always round up the next kB so that it doesn't show 0 kB when some small file still needs to be fetched. svn path=/main/trunk/; revision=5122 --- diff --git a/bin/emerge b/bin/emerge index 92c5b98fe..0651da960 100755 --- a/bin/emerge +++ b/bin/emerge @@ -274,6 +274,10 @@ def countdown(secs=5, doing="Starting"): def format_size(mysize): if type(mysize) not in [types.IntType,types.LongType]: return str(mysize) + if 0 != mysize % 1024: + # Always round up to the next kB so that it doesn't show 0 kB when + # some small file still needs to be fetched. + mysize += 1024 - mysize % 1024 mystr=str(mysize/1024) mycount=len(mystr) while (mycount > 3):