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 9866A1381F3 for ; Tue, 15 Oct 2013 03:51:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 143F5E0A99; Tue, 15 Oct 2013 03:51:31 +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 25DEAE0A8F for ; Tue, 15 Oct 2013 03:51:24 +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 0927533EE57 for ; Tue, 15 Oct 2013 03:51:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B2C8BE5460 for ; Tue, 15 Oct 2013 03:51:22 +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: <1381809009.15514cb04216b9fc259e905f453799bd8efa8483.dol-sen@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: mirrorselect/ X-VCS-Repository: proj/mirrorselect X-VCS-Files: mirrorselect/mirrorparser3.py X-VCS-Directories: mirrorselect/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 15514cb04216b9fc259e905f453799bd8efa8483 X-VCS-Branch: master Date: Tue, 15 Oct 2013 03:51:22 +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: 04be03dd-9c47-437f-847c-de10cc18bc11 X-Archives-Hash: 337d173c978cc7f8a88ff484862d6540 commit: 15514cb04216b9fc259e905f453799bd8efa8483 Author: Brian Dolbec gentoo org> AuthorDate: Tue Oct 15 03:50:09 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Tue Oct 15 03:50:09 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=15514cb0 fix missed import. --- mirrorselect/mirrorparser3.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mirrorselect/mirrorparser3.py b/mirrorselect/mirrorparser3.py index 976ff17..6a11855 100644 --- a/mirrorselect/mirrorparser3.py +++ b/mirrorselect/mirrorparser3.py @@ -84,6 +84,7 @@ class MirrorParser3: return [url for url, args in list(self._dict.items())] if __name__ == '__main__': + import sys if int(sys.version[0]) == 3: import urllib.request, urllib.parse, urllib.error parser = MirrorParser3()