commit: 90fcb4d81e9589a29c3bf1f01384184e713ef6ca
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 2 06:07:52 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Feb 2 06:07:52 2016 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=90fcb4d8
main.py: Add missing value to log statement
catalyst/main.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/main.py b/catalyst/main.py
index cb90e66..6608b86 100644
--- a/catalyst/main.py
+++ b/catalyst/main.py
@@ -388,7 +388,7 @@ def _main(parser, opts):
log.critical(
'%s is not a valid hash_function entry\n'
'Valid hash_function entries:\n'
- '%s', HASH_DEFINITIONS.keys())
+ '%s', conf_values["hash_function"],
HASH_DEFINITIONS.keys())
try:
process.find_binary(hash_map.hash_map[conf_values["hash_function"]].cmd)
except process.CommandNotFound: