Commit 33ceefeb by rwitten

Added saving url to File's "_to_native"

parent 728c492b
......@@ -201,7 +201,8 @@ class File(ParseType):
def _to_native(self):
return {
'__type': 'File',
'name': self._name
'name': self._name,
'url': self._file_url
}
url = property(lambda self: self._file_url)
......
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