From: Brian Dolbec Date: Tue, 12 Feb 2013 02:49:19 +0000 (-0800) Subject: Remove unused urllib import. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ab9d4cfd759de7344b66d3e7c220cbfa2d00179;p=catalyst.git 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. --- diff --git a/catalyst/support.py b/catalyst/support.py index 316dfa3d..0ddf98d6 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"""