commit: c71831578f53d2551cd845b25bee3aaee3baa6f4 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Tue Feb 12 02:49:19 2013 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com> CommitDate: Sat Jun 14 03:51:36 2014 +0000 URL: http://sources.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"""