From 3a5c944926761c7ac16335a0b6e4cc038cd2f374 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 20 May 2023 14:07:25 +0200 Subject: [PATCH] scripts/passwords-for: ensure keys are strings --- scripts/passwords-for | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/passwords-for b/scripts/passwords-for index 0b29e95..136ba99 100755 --- a/scripts/passwords-for +++ b/scripts/passwords-for @@ -12,6 +12,8 @@ repo = Repository(path) def print_faults(dictionary, keypath=[]): for key, value in sorted(dictionary.items()): + key = str(key) + if isinstance(value, Fault): try: resolved_fault = value.value