From 23c20d4235de758ade7ebe211d0ef39bf9794879 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 5 Oct 2009 19:54:27 +0200 Subject: [PATCH] [equo] when caching fails, show a traceback at least --- client/equo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/client/equo.py b/client/equo.py index d880bac1b..6b738bf81 100644 --- a/client/equo.py +++ b/client/equo.py @@ -464,6 +464,7 @@ def load_conf_cache(): except KeyboardInterrupt: continue except: + entropyTools.print_traceback() if not etpUi['quiet']: print_info(red(" @@ ")+blue(_("Caching not run."))) Equo.destroy()