From 02ea97f6d93bb907c65571e7b39a651f7cac8cbf Mon Sep 17 00:00:00 2001 From: David Snopek Date: Wed, 31 Jul 2013 16:59:13 +0100 Subject: [PATCH] Fixed issue with non-existant member. --- AnkiServer/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AnkiServer/threading.py b/AnkiServer/threading.py index c5fe199..7949ac8 100644 --- a/AnkiServer/threading.py +++ b/AnkiServer/threading.py @@ -79,7 +79,7 @@ class ThreadingCollectionWrapper(object): ret = self.wrapper.execute(func, args, kw, return_queue) except Exception, e: logging.error('CollectionThread[%s]: Unable to %s(*%s, **%s): %s', - self.path, func.func_name, repr(args), repr(kw), e, exc_info=True) + self.path, func_name, repr(args), repr(kw), e, exc_info=True) # we return the Exception which will be raise'd on the other end ret = e