From 4def79d306a0202bb0d1e6f09d9318c4fcea1720 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Sat, 24 Oct 2015 13:38:03 -0700 Subject: [PATCH] Display the Exception as well as the error message --- letsencrypt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 2aedeea8f..ed452b5e6 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -352,7 +352,7 @@ def diagnose_configurator_problem(cfg_type, requested, plugins): else: msg = ("The {0} plugin is not working; there may be problems with " "your existing configuration.\nThe error was: {1}" - .format(requested, plugins[requested].problem)) + .format(requested, `plugins[requested].problem`)) elif cfg_type == "installer": if os.path.exists("/etc/debian_version"): # Debian... installers are at least possible