mirror of https://github.com/dirtbags/moth.git
Complain when there are no puzzle directories
This commit is contained in:
parent
aa23e248b4
commit
b736c79568
|
@ -41,6 +41,8 @@ async def handle_puzzlelist(request):
|
||||||
cat = moth.Category(p, seed)
|
cat = moth.Category(p, seed)
|
||||||
puzzles[catName] = [[i, str(i)] for i in cat.pointvals()]
|
puzzles[catName] = [[i, str(i)] for i in cat.pointvals()]
|
||||||
puzzles[catName].append([0, ""])
|
puzzles[catName].append([0, ""])
|
||||||
|
if len(puzzles) <= 1:
|
||||||
|
logging.warning("No directories found matching {}/*".format(request.app["puzzles_dir"]))
|
||||||
return web.Response(
|
return web.Response(
|
||||||
content_type="application/json",
|
content_type="application/json",
|
||||||
body=json.dumps(puzzles),
|
body=json.dumps(puzzles),
|
||||||
|
|
|
@ -30,7 +30,7 @@ try this:
|
||||||
apt install python3
|
apt install python3
|
||||||
git clone https://github.com/dirtbags/moth/
|
git clone https://github.com/dirtbags/moth/
|
||||||
cd moth
|
cd moth
|
||||||
./devel-server.py --puzzles example-puzzles
|
python3 devel/devel-server.py --puzzles example-puzzles
|
||||||
|
|
||||||
|
|
||||||
Installing New Puzzles
|
Installing New Puzzles
|
||||||
|
|
Loading…
Reference in New Issue