Commit 4639a59d by Adrien Lacroix

fix join on delete file

parent c07dc0d3
...@@ -337,7 +337,7 @@ class File(ParseType, ParseBase): ...@@ -337,7 +337,7 @@ class File(ParseType, ParseBase):
return response, lambda response_dict: None return response, lambda response_dict: None
def delete(self, batch=False): def delete(self, batch=False):
uri = "/".join(self.__class__.ENDPOINT_ROOT, self.name) uri = "/".join([self.__class__.ENDPOINT_ROOT, self.name])
response = self.__class__.DELETE(uri, batch=batch) response = self.__class__.DELETE(uri, batch=batch)
if batch: if batch:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment