From 34e8c0e1ed5faffa5ac147145104d664122e2ff6 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Thu, 11 Feb 2016 19:16:49 +0900 Subject: [PATCH] plugins: give traceback when cannot load --- lib/plugins.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/plugins.py b/lib/plugins.py index 7ac93b20..56542e1a 100644 --- a/lib/plugins.py +++ b/lib/plugins.py @@ -137,6 +137,7 @@ class Plugins(DaemonThread): wallet_types.append(details[1]) descs.append(details[2]) except: + traceback.print_exc() self.print_error("cannot load plugin for:", name) return wallet_types, descs