Files
notifications-admin/app
Chris Hill-Scott 19662d8329 Fix bug with large file uploads
Depending on the size of the uploaded file, Flask will temporarily store
it in different ways. This means that it comes back as a `TempFile` if
the file is roughly <500k and as `BytesIO` if the file is larger.

`TempFile` supports the `.getvalue()` method, but `BytesIO` does not.
Both support the `.read()` method, so this commit changes to use that
instead.
2016-04-25 09:26:25 +01:00
..
2016-04-20 15:48:35 +01:00
2016-04-25 09:26:25 +01:00
2016-04-21 09:30:33 +01:00
2016-04-21 09:30:33 +01:00