Integrate suggestions from code review

This commit is contained in:
Neale Pickett 2016-11-17 14:24:01 -07:00
parent 1237ab7059
commit 5e75039ffa
2 changed files with 2 additions and 1 deletions

View File

@ -128,7 +128,7 @@ you are a fool.
if fpath: if fpath:
cat = moth.Category(fpath, seed) cat = moth.Category(fpath, seed)
if points: if points:
puzzle = cat.puzzle(int(parts[3])) puzzle = cat.puzzle(points)
if not cat: if not cat:
title = "Puzzle Categories" title = "Puzzle Categories"

View File

@ -181,6 +181,7 @@ class Category:
self.catmod = importlib.machinery.SourceFileLoader( self.catmod = importlib.machinery.SourceFileLoader(
'catmod', 'catmod',
os.path.join(path, 'category.py')).load_module() os.path.join(path, 'category.py')).load_module()
self.pointvals.extend(self.catmod.points)
self.pointvals = self.catmod.points[:] self.pointvals = self.catmod.points[:]
else: else:
for fpath in glob.glob(os.path.join(path, "[0-9]*")): for fpath in glob.glob(os.path.join(path, "[0-9]*")):