diff options
Diffstat (limited to 'core/views/expo.py')
-rw-r--r-- | core/views/expo.py | 6 |
1 files 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<head%s>%s</head>%s<body%s>\n%s</body>%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() |