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 3db61f1..1161da3 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_):
--
2.5.2