diff --git a/swift/SwiftRoute.py b/swift/SwiftRoute.py index eb97412..6fb18c1 100644 --- a/swift/SwiftRoute.py +++ b/swift/SwiftRoute.py @@ -387,7 +387,7 @@ def do_GET(self): self.path = "index.html" elif self.path.startswith("/retrieve/"): # print(f"Retrieving file: {self.path[10:]}") - self.path = urllib.parse.unquote(self.path[9:]) + self.path = urllib.parse.unquote(self.path[10:]) self.send_file_via_real_path() return