From a2ceea31762029e64ca0ea1a604787f21ef472bf Mon Sep 17 00:00:00 2001 From: John Donaldson Date: Thu, 15 Aug 2019 23:32:28 +0100 Subject: [PATCH] Fix how legacy puzzles with author (vs. authors) field are handled --- devel/moth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/moth.py b/devel/moth.py index d3b3492..fd53c6a 100644 --- a/devel/moth.py +++ b/devel/moth.py @@ -289,7 +289,7 @@ class Puzzle: files = [fn for fn,f in self.files.items() if f.visible] return { - 'authors': self.authors, + 'authors': self.get_authors(), 'hashes': self.hashes(), 'files': files, 'scripts': self.scripts,