From 5666f1e9a7b78363cff71cf915f52775f25c8695 Mon Sep 17 00:00:00 2001 From: Martin Green Date: Sun, 19 Jun 2022 01:02:41 +0100 Subject: [PATCH] test --- core/views/expo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/views/expo.py b/core/views/expo.py index c57d5cf..0719791 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -281,8 +281,8 @@ def editexpopage(request, path): pass try: - filepath = os.path.normpath(Path(settings.EXPOWEB) / path) - o = open(filepath.encode(sysdefaultencoding), "r") + filepath = Path(settings.EXPOWEB) / path + o = open(os.path.normpath(filepath).encode(sysdefaultencoding), "r") html = o.read() autogeneratedmatch = re.search(r"\<\!--\s*(.*?(Do not edit|It is auto-generated).*?)\s*--\>", html, re.DOTALL + re.IGNORECASE) if autogeneratedmatch: @@ -325,7 +325,7 @@ def editexpopage(request, path): body = body.replace("\r", "") result = "%s%s%s\n%s%s" % (preheader, headerargs, head, postheader, bodyargs, body, postbody) - cwd = Path(filepath).parent + cwd = filepath.parent filename = filepath.name git = settings.GIT # GIT see also core/models/cave.py writetrogglefile()