From 9d4e2bf3432907d305839e731a22c2f4796c651d Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 31 Dec 2016 21:57:27 +0200 Subject: Fix word list Python code generation --- gen_word_list_code | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_word_list_code b/gen_word_list_code index 01c670a..594d396 100755 --- a/gen_word_list_code +++ b/gen_word_list_code @@ -26,6 +26,6 @@ pgp_word_list = { for line in sys.stdin: hex, even_word, odd_word = line.lower().split() - sys.stdout.write(' "{}": ({}, {}),\n'.format(hex, even_word, odd_word)) + sys.stdout.write(' "{}": ("{}", "{}"),\n'.format(hex, even_word, odd_word)) sys.stdout.write('}\n') -- cgit v1.2.1