Trying one more thing

This commit is contained in:
Andrew 2022-12-14 12:24:00 -05:00
parent 6f510976f0
commit 9f939ae40e

View File

@ -2,7 +2,7 @@ import json
import logging import logging
import os import os
import time import time
from pathlib import PurePath, PurePosixPath from pathlib import PurePosixPath
import tornado.web import tornado.web
import tornado.escape import tornado.escape
import bleach import bleach
@ -320,7 +320,7 @@ class ServerHandler(BaseHandler):
return return
import_type = bleach.clean(self.get_argument("create_type", "")) import_type = bleach.clean(self.get_argument("create_type", ""))
import_server_path = bleach.clean(self.get_argument("server_path", "")) import_server_path = bleach.clean(self.get_argument("server_path", ""))
if PurePath(self.controller.project_root).is_relative_to( if PurePosixPath(self.controller.project_root).is_relative_to(
import_server_path import_server_path
): ):
self.redirect( self.redirect(
@ -478,7 +478,7 @@ class ServerHandler(BaseHandler):
return return
import_type = bleach.clean(self.get_argument("create_type", "")) import_type = bleach.clean(self.get_argument("create_type", ""))
import_server_path = bleach.clean(self.get_argument("server_path", "")) import_server_path = bleach.clean(self.get_argument("server_path", ""))
if PurePath(self.controller.project_root).is_relative_to( if PurePosixPath(self.controller.project_root).is_relative_to(
import_server_path import_server_path
): ):
self.redirect( self.redirect(