From ac0f1d1f61ed3ec00831867f2a34eea88e7160ec Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 11 Oct 2015 23:06:02 -0400 Subject: hash_utils: fix bad keyword w/CatalystError The exception takes "print_traceback", not "traceback". --- catalyst/hash_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/hash_utils.py b/catalyst/hash_utils.py index 3db61f16..1161da31 100644 --- a/catalyst/hash_utils.py +++ b/catalyst/hash_utils.py @@ -79,7 +79,7 @@ class HashMap(object): hash_) except: raise CatalystError("Error generating hash, is appropriate " + \ - "utility installed on your system?", traceback=True) + "utility installed on your system?", print_traceback=True) def calc_hash(self, file_, hash_): -- cgit v1.2.3-65-gdbad