aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-10-11 23:06:02 -0400
committerMike Frysinger <vapier@gentoo.org>2015-10-11 23:06:02 -0400
commitac0f1d1f61ed3ec00831867f2a34eea88e7160ec (patch)
tree76c909f7ec92fe824c418cfe8db3177d3eba3fd9
parentgenbase: use sorted() with dict keys (diff)
downloadcatalyst-ac0f1d1f61ed3ec00831867f2a34eea88e7160ec.tar.gz
catalyst-ac0f1d1f61ed3ec00831867f2a34eea88e7160ec.tar.bz2
catalyst-ac0f1d1f61ed3ec00831867f2a34eea88e7160ec.zip
hash_utils: fix bad keyword w/CatalystError
The exception takes "print_traceback", not "traceback".
-rw-r--r--catalyst/hash_utils.py2
1 files changed, 1 insertions, 1 deletions
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_):