Removed defensive test in Handler.close

This commit is contained in:
Vinay Sajip 2006-02-07 13:55:52 +00:00
parent f0a95eca45
commit e0f85926d6
1 changed files with 3 additions and 4 deletions

View File

@ -41,8 +41,8 @@ except ImportError:
__author__ = "Vinay Sajip <vinay_sajip@red-dove.com>"
__status__ = "beta"
__version__ = "0.4.9.7"
__date__ = "07 October 2005"
__version__ = "0.4.9.9"
__date__ = "06 February 2006"
#---------------------------------------------------------------------------
# Miscellaneous module data
@ -671,7 +671,6 @@ class Handler(Filterer):
#get the module data lock, as we're updating a shared structure.
_acquireLock()
try: #unlikely to raise an exception, but you never know...
if _handlers.has_key(self):
del _handlers[self]
_handlerList.remove(self)
finally: