From 429bfbde3f46916ede737aa415975a317b3f2cb9 Mon Sep 17 00:00:00 2001 From: TimStallard Date: Mon, 28 Jan 2019 00:21:43 +0000 Subject: [PATCH] Exclude direct protocols --- lg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lg.py b/lg.py index 42c5562..b9a65ee 100644 --- a/lg.py +++ b/lg.py @@ -230,7 +230,7 @@ def whois(): return jsonify(output=output, title=query) -SUMMARY_UNWANTED_PROTOS = ["Kernel", "Static", "Device", "BFD"] +SUMMARY_UNWANTED_PROTOS = ["Kernel", "Static", "Device", "BFD", "Direct"] @app.route("/summary/") @app.route("/summary//")