Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 519124
Collapse All | Expand All

(-)a/pym/portage/localization.py (-1 / +1 lines)
Lines 36-39 def localized_size(num_bytes): Link Here
36
36
37
	# always round up, so that small files don't end up as '0 KiB'
37
	# always round up, so that small files don't end up as '0 KiB'
38
	num_kib = math.ceil(num_bytes / 1024)
38
	num_kib = math.ceil(num_bytes / 1024)
39
	return locale.format('%d', num_kib, grouping=True) + ' KiB'
39
	return _(locale.format('%d', num_kib, grouping=True) + ' KiB')

Return to bug 519124