Commit 0d566b96 by ryan

fixing upddated_at to updated_at at line 74

parent 6558846d
......@@ -69,7 +69,7 @@ class ParseObject(ParseBase):
return self._object_id
def updatedAt(self):
return self._upddated_at and self._ISO8601ToDatetime(self._updated_at) or None
return self._updated_at and self._ISO8601ToDatetime(self._updated_at) or None
def createdAt(self):
return self._created_at and self._ISO8601ToDatetime(self._created_at) or None
......
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