Commit 21388939 by David Robinson

Merge pull request #5 from UrK/master

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