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 03E4513827E for ; Sat, 14 Dec 2013 03:28:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC25FE0BC9; Sat, 14 Dec 2013 03:28:42 +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 21C91E0BC4 for ; Sat, 14 Dec 2013 03:28:42 +0000 (UTC) Received: from big_daddy.dol-sen.ca (S010600222de111ff.vc.shawcable.net [96.49.5.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 3CF0F33F4D6; Sat, 14 Dec 2013 03:28:41 +0000 (UTC) From: Brian Dolbec To: gentoo-catalyst@lists.gentoo.org Cc: Brian Dolbec Subject: [gentoo-catalyst] [PATCH 1/3] Remove unused urllib import. Date: Fri, 13 Dec 2013 19:28:26 -0800 Message-Id: <1386991708-9385-2-git-send-email-dolsen@gentoo.org> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1386991708-9385-1-git-send-email-dolsen@gentoo.org> References: <1386991708-9385-1-git-send-email-dolsen@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 89890ef6-61a3-49ea-a5ec-36bb8205ac9f X-Archives-Hash: 8d04f39d99cfb10d62e6b95acae468fd This urllib import was added in commit 64c16cae70da13de3c55d8555a2e4c5dcdf2fcad to fix an issue, but it is not used. So must have covered up the real bug. Removing it now that I've completed some testing and haven't come across anything I can attribute to it. --- catalyst/support.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/catalyst/support.py b/catalyst/support.py index 316dfa3..0ddf98d 100644 --- a/catalyst/support.py +++ b/catalyst/support.py @@ -18,10 +18,6 @@ except: # pids this process knows of. spawned_pids = [] -try: - import urllib -except SystemExit, e: - raise def cleanup(pids,block_exceptions=True): """function to go through and reap the list of pids passed to it""" -- 1.8.3.2