Commit 1623d6dd by Miles Richardson Committed by GitHub

PR #158 merge: fix join on delete file from alacroix/master

fix join on delete file
parents e2fa3663 4639a59d
...@@ -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