Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/
Date: Tue, 02 Feb 2016 06:11:32
Message-Id: 1454393272.90fcb4d81e9589a29c3bf1f01384184e713ef6ca.dolsen@gentoo
1 commit: 90fcb4d81e9589a29c3bf1f01384184e713ef6ca
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 06:07:52 2016 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 06:07:52 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=90fcb4d8
7
8 main.py: Add missing value to log statement
9
10 catalyst/main.py | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/catalyst/main.py b/catalyst/main.py
14 index cb90e66..6608b86 100644
15 --- a/catalyst/main.py
16 +++ b/catalyst/main.py
17 @@ -388,7 +388,7 @@ def _main(parser, opts):
18 log.critical(
19 '%s is not a valid hash_function entry\n'
20 'Valid hash_function entries:\n'
21 - '%s', HASH_DEFINITIONS.keys())
22 + '%s', conf_values["hash_function"], HASH_DEFINITIONS.keys())
23 try:
24 process.find_binary(hash_map.hash_map[conf_values["hash_function"]].cmd)
25 except process.CommandNotFound: