From fc8813c3e2edf540171b287c98c2f54170cfaf99 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 23 Apr 2019 23:03:07 -0600 Subject: [PATCH] index update: use oisf index, not jasonish --- suricata/update/data/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suricata/update/data/update.py b/suricata/update/data/update.py index f4edb11..85a7965 100644 --- a/suricata/update/data/update.py +++ b/suricata/update/data/update.py @@ -27,7 +27,7 @@ def embed_index(): """Embed a copy of the index as a Python source file. We can't use a datafile yet as there is no easy way to do with distutils.""" dist_filename = os.path.join(os.path.dirname(__file__), "index.py") - url = "https://raw.githubusercontent.com/jasonish/suricata-intel-index/master/index.yaml" + url = "https://raw.githubusercontent.com/oisf/suricata-intel-index/master/index.yaml" response = urlopen(url) index = yaml.safe_load(response.read()) with open(dist_filename, "w") as fileobj: -- 2.47.3