From 7f551f47f7f5ef4081e48b2488015eb925e20e77 Mon Sep 17 00:00:00 2001 From: flan Date: Fri, 3 Jan 2020 03:02:42 +0100 Subject: [PATCH] Remove unused argument to logger.error() --- ankisyncd/thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankisyncd/thread.py b/ankisyncd/thread.py index 63e77c0..e0173cf 100644 --- a/ankisyncd/thread.py +++ b/ankisyncd/thread.py @@ -98,7 +98,7 @@ class ThreadingCollectionWrapper: ret = self.wrapper.execute(func, args, kw, return_queue) except Exception as e: self.logger.error("Unable to %s(*%s, **%s): %s", - self.path, func_name, repr(args), repr(kw), e, exc_info=True) + 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