From 32629989969ede8cb50f954b3f3be951f73d8b7c Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Tue, 18 Oct 2016 16:01:10 -0600 Subject: [PATCH] Make Category class match new Puzzle.__init__ --- puzzles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puzzles.py b/puzzles.py index 3923f89..457a168 100644 --- a/puzzles.py +++ b/puzzles.py @@ -313,7 +313,7 @@ class Category: def puzzle(self, points): path = os.path.join(self.path, str(points)) - return Puzzle(path, self.seed) + return Puzzle(self.seed, path) def puzzles(self): for points in self.pointvals: