From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JhVgV-0000Em-Nd for garchives@archives.gentoo.org; Thu, 03 Apr 2008 20:05:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3138CE0B23; Thu, 3 Apr 2008 20:04:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0BFEAE0B23 for ; Thu, 3 Apr 2008 20:04:32 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 9E3F465C49 for ; Thu, 3 Apr 2008 20:04:31 +0000 (UTC) Received: from zmedico by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JhVfi-0002Cr-6U for gentoo-commits@lists.gentoo.org; Thu, 03 Apr 2008 20:04:30 +0000 To: gentoo-commits@lists.gentoo.org From: "Zac Medico (zmedico)" Subject: [gentoo-commits] portage r9692 - main/branches/2.1.2/pym X-VCS-Repository: portage X-VCS-Revision: 9692 X-VCS-Files: main/branches/2.1.2/pym/portage.py X-VCS-Directories: main/branches/2.1.2/pym X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico Content-Type: text/plain; charset=UTF-8 Message-Id: Sender: Zac Medico Date: Thu, 03 Apr 2008 20:04:30 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 78d64e5f-8f50-4212-9249-58ab5c799ee9 X-Archives-Hash: 1a8a79ec80e9ce72741174291ac062bb Author: zmedico Date: 2008-04-03 20:04:29 +0000 (Thu, 03 Apr 2008) New Revision: 9692 Modified: main/branches/2.1.2/pym/portage.py Log: Add missing str.upper() call for PORTAGE_FETCH_RESUME_MIN_SIZE. (trunk r9= 691) Modified: main/branches/2.1.2/pym/portage.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- main/branches/2.1.2/pym/portage.py 2008-04-03 20:03:40 UTC (rev 9691) +++ main/branches/2.1.2/pym/portage.py 2008-04-03 20:04:29 UTC (rev 9692) @@ -3062,7 +3062,7 @@ fetch_resume_size =3D fetch_resume_size_default match =3D _fetch_resume_size_re.match(fetch_resume_size) fetch_resume_size =3D int(match.group(1)) * \ - 2 ** _size_suffix_map[match.group(2)] + 2 ** _size_suffix_map[match.group(2).upper()] =20 # Behave like the package has RESTRICT=3D"primaryuri" after a # couple of checksum failures, to increase the probablility --=20 gentoo-commits@lists.gentoo.org mailing list