Commit 8be8e1cd by Uri Kogan

fixing request URL creation (_absolute_url)

parent 036b1353
......@@ -137,7 +137,7 @@ class ParseResource(ParseBase):
return cls(**cls.GET('/' + resource_id))
_absolute_url = property(lambda self: '/'.join(
[self.__class__.ENDPOINT_ROOT + self._object_id]))
[self.__class__.ENDPOINT_ROOT, self._object_id]))
def objectId(self):
return self._object_id
......
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