diff --git a/VERSION b/VERSION index bea438e..5436ea0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.1 +3.3.2 \ No newline at end of file diff --git a/devel/moth.py b/devel/moth.py index 1875bd7..7161029 100644 --- a/devel/moth.py +++ b/devel/moth.py @@ -174,6 +174,10 @@ class Puzzle: def handle_header_key(self, key, val): if key == 'author': self.authors.append(val) + elif key == 'authors': + if not isinstance(val, list): + raise ValueError("Authors must be a list, got %s, instead" & (type(val),)) + self.authors = list(val) elif key == 'summary': self.summary = val elif key == 'answer':