From 44d0f169819712c9a44130b9d74b53cf4f5c56bb Mon Sep 17 00:00:00 2001 From: Ivan Maslov Date: Wed, 19 Aug 2020 13:13:02 +0300 Subject: [PATCH] # minor fixes after test --- Sources/pyOpenRPA/Orchestrator/Server.py | 3 ++- v1.1.16 => v1.1.17 | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename v1.1.16 => v1.1.17 (100%) diff --git a/Sources/pyOpenRPA/Orchestrator/Server.py b/Sources/pyOpenRPA/Orchestrator/Server.py index 4b95728e..43080607 100644 --- a/Sources/pyOpenRPA/Orchestrator/Server.py +++ b/Sources/pyOpenRPA/Orchestrator/Server.py @@ -244,7 +244,8 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler): if "ResponseDefRequestGlobal" in inURLItem: inURLItem["ResponseDefRequestGlobal"](inRequest, inGlobalDict) if "ResponseFolderPath" in inURLItem: - lRequestPath = inRequest.path + #lRequestPath = inRequest.path + lRequestPath = urllib.parse.unquote(inRequest.path) if inURLItem["URL"][-1]!="/": inURLItem["URL"]+= "/" # Fix for settings lFilePathSecondPart = lRequestPath.replace(inURLItem["URL"],"") lFilePath = os.path.join(inURLItem["ResponseFolderPath"],lFilePathSecondPart) diff --git a/v1.1.16 b/v1.1.17 similarity index 100% rename from v1.1.16 rename to v1.1.17