From 1129a28eec2fc6215628ffd51d9b8c9b046b6f50 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 3 Apr 2008 20:03:40 +0000 Subject: Add missing str.upper() call for PORTAGE_FETCH_RESUME_MIN_SIZE. svn path=/main/trunk/; revision=9691 --- pym/portage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 3b64c48c8..0d60fdc2f 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3086,7 +3086,7 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", fetch_resume_size = fetch_resume_size_default match = _fetch_resume_size_re.match(fetch_resume_size) fetch_resume_size = int(match.group(1)) * \ - 2 ** _size_suffix_map[match.group(2)] + 2 ** _size_suffix_map[match.group(2).upper()] # Behave like the package has RESTRICT="primaryuri" after a # couple of checksum failures, to increase the probablility -- cgit v1.2.3-1-g7c22