From c0cb4d6e02120c5c5f2f3e2967d8154ddfe64809 Mon Sep 17 00:00:00 2001 From: John Donaldson Date: Fri, 12 Jul 2019 17:18:25 +0100 Subject: [PATCH] Actually store things in the KSA field --- devel/moth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/moth.py b/devel/moth.py index 687dcb4..a1dd7de 100644 --- a/devel/moth.py +++ b/devel/moth.py @@ -142,7 +142,7 @@ class Puzzle: elif key == "solution": self.solution = val elif key == "ksa": - self.solution = val + self.ksa.append(val) else: raise ValueError("Unrecognized header field: {}".format(key)) else: