From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2FF921381F3 for ; Thu, 17 Oct 2013 14:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19E9BE0AC1; Thu, 17 Oct 2013 14:26:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7753E0AC1 for ; Thu, 17 Oct 2013 14:26:34 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8117C33EEC5 for ; Thu, 17 Oct 2013 14:26:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2D3CEE5308 for ; Thu, 17 Oct 2013 14:26:32 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1382019938.e8bd46886261aca42917e0d627a0a49b337b02f5.dol-sen@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: mirrorselect/ X-VCS-Repository: proj/mirrorselect X-VCS-Files: mirrorselect/selectors.py X-VCS-Directories: mirrorselect/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e8bd46886261aca42917e0d627a0a49b337b02f5 X-VCS-Branch: master Date: Thu, 17 Oct 2013 14:26:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c972bd6d-fffb-486e-ad92-ab27042bb68b X-Archives-Hash: 34fd8c2d4457661adc128653f3edf60d commit: e8bd46886261aca42917e0d627a0a49b337b02f5 Author: Brian Dolbec gentoo org> AuthorDate: Thu Oct 17 14:25:38 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Oct 17 14:25:38 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=e8bd4688 Fix bug 483232, incorrect urlparse import for python3. --- mirrorselect/selectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirrorselect/selectors.py b/mirrorselect/selectors.py index 9d718fd..230ca15 100644 --- a/mirrorselect/selectors.py +++ b/mirrorselect/selectors.py @@ -38,7 +38,7 @@ import hashlib if int(sys.version[0]) == 3: import urllib.request, urllib.parse, urllib.error - url_parse = urllib.parse + url_parse = urllib.parse.urlparse url_open = urllib.request.urlopen else: import urllib