From 0906fe9b068be85b4008c2d98c52c7ae51aaf2e6 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Wed, 19 Jun 2019 14:47:39 -0700 Subject: [PATCH] Update wl/bl -> only/not --- inquisitor/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inquisitor/app.py b/inquisitor/app.py index aebb68e..3137810 100644 --- a/inquisitor/app.py +++ b/inquisitor/app.py @@ -39,8 +39,8 @@ def datetimeformat(value, formatstr="%Y-%m-%d %H:%M:%S"): def root(): dungeon = dungeonlib.Dungeon("dungeon") filter_lambda = list_filter( - whitelist=request.args.get('wl'), - blacklist=request.args.get('bl')) + whitelist=request.args.get('only'), + blacklist=request.args.get('not')) active_items = [] for cell_name in dungeon: cell = dungeon[cell_name]