Skip to content

Commit 4639a59

Browse files
author
Adrien Lacroix
committed
fix join on delete file
1 parent c07dc0d commit 4639a59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse_rest/datatypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def save(self, batch=False):
337337
return response, lambda response_dict: None
338338

339339
def delete(self, batch=False):
340-
uri = "/".join(self.__class__.ENDPOINT_ROOT, self.name)
340+
uri = "/".join([self.__class__.ENDPOINT_ROOT, self.name])
341341
response = self.__class__.DELETE(uri, batch=batch)
342342

343343
if batch:

0 commit comments

Comments
 (0)