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 6E249138779 for ; Sat, 14 Jun 2014 05:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9CD3E0970; Sat, 14 Jun 2014 05:58:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03063E0932 for ; Sat, 14 Jun 2014 05:58:12 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25D8133FF57 for ; Sat, 14 Jun 2014 05:58:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 0B81F18361 for ; Sat, 14 Jun 2014 05:58:10 +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: <1402717896.c71831578f53d2551cd845b25bee3aaee3baa6f4.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/support.py X-VCS-Directories: catalyst/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: c71831578f53d2551cd845b25bee3aaee3baa6f4 X-VCS-Branch: pending Date: Sat, 14 Jun 2014 05:58:10 +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: eaf62918-d40f-490a-98e0-76f5c0984e74 X-Archives-Hash: 78d34b0e5ea59057bf0aa7e6e73b4d0c Message-ID: <20140614055810.LtsxeEKWTng3JoGzc0ehtY1VllY0rUQN820tAAlpzrk@z> commit: c71831578f53d2551cd845b25bee3aaee3baa6f4 Author: Brian Dolbec gentoo org> AuthorDate: Tue Feb 12 02:49:19 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sat Jun 14 03:51:36 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=c7183157 Remove unused urllib import. 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 4fe4603..bc24130 100644 --- a/catalyst/support.py +++ b/catalyst/support.py @@ -23,10 +23,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"""