From 57d257078a9806eedf25ac15e0984924760d94c4 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 17 Sep 2004 17:17:11 +0000 Subject: [PATCH] Let's pass on AttributeError since we know what's happening there. --- plugins/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/__init__.py b/plugins/__init__.py index 17987c68c..54b5e09fd 100644 --- a/plugins/__init__.py +++ b/plugins/__init__.py @@ -83,6 +83,8 @@ try: def __del__(self): try: Connection.__del__(self) + except AttributeError: + pass except Exception, e: try: log.exception('Uncaught exception in __del__:')