summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgen_word_list_code2
1 files changed, 1 insertions, 1 deletions
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')