From 9e6095afa0a3354daab554501e82c2c03bf588cd Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 13 Apr 2022 15:20:26 -0400 Subject: [PATCH] Inprove -m mapping. --- make_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_graph.py b/make_graph.py index 6623aff..a2b0afc 100755 --- a/make_graph.py +++ b/make_graph.py @@ -15,7 +15,7 @@ import sys, yaml, getopt def allalike(loc): "Select out loci related to the Maze All Alike" - return ("ALIKE" in loc) or (loc == "LOC_PITBRINK") or ("MAZEEND" in loc) or ("STALACTITE" in loc) or (loc == "LOC_MISTWEST") + return ("ALIKE" in loc) or (loc == "LOC_PITBRINK") or ("MAZEEND" in loc) or ("STALACTITE" in loc) def surface(attrs): "Select out surface locations" -- 2.31.1