From 814c9efdce7c9230f4bd97a72f4fa6c314b81d60 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 19 Jun 2011 01:52:21 -0400 Subject: [PATCH] nicer error message that actually tells us what's going on, thanks to the changes in lib.blowfish upstream (on develop) --- core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config.py b/core/config.py index df7c25f..3607502 100644 --- a/core/config.py +++ b/core/config.py @@ -145,7 +145,7 @@ def parse_config(key): exit(1) except blowfish.BlowfishError as error: print "\nError decrypting passwords:" - print error + print "{0}: {1}.".format(error.__class__.__name__, error) exit(1) def _parse_config(key):