From 674a1156dcfeab3397d6f9f0fea18b3e39c830b2 Mon Sep 17 00:00:00 2001 From: Arjix <53124886+ArjixWasTaken@users.noreply.github.com> Date: Mon, 4 Oct 2021 19:14:22 +0300 Subject: [PATCH] Update site-list.py --- .github/site-list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/site-list.py b/.github/site-list.py index 97410a61..6575dc70 100644 --- a/.github/site-list.py +++ b/.github/site-list.py @@ -37,7 +37,7 @@ for path in glob(GLOB): except Exception as ex: print("{0}: {1}".format(path, ex)) -with open("../README.md", "r+", encoding='utf-8') as readme: +with open("README.md", "r+", encoding='utf-8') as readme: raw = readme.read() if START_MARKER not in raw or END_MARKER not in raw: raise RuntimeError("Missing start and end markers")