Fix path to data file when doing site update.

This commit is contained in:
Christopher K. Hoadley 2020-05-08 23:39:41 -05:00
parent f2179ca7c9
commit 2b99aeef0f
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ with open("sites.md", "w") as site_file:
sorted_json_data = json.dumps(data, indent=2, sort_keys=True)
with open("data.json", "w") as data_file:
with open("sherlock/resources/data.json", "w") as data_file:
data_file.write(sorted_json_data)
print("\nFinished updating supported site listing!")