Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Try it locally

::

virtualenv ven
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

Expand All @@ -44,3 +44,16 @@ Support
-------

If you find any bug or you want to propose a new feature, please use the `issues tracker <https://github.com/juliomalegria/django-chunked-upload/issues>`__. I'll be happy to help you! :-)


Fixes
-------

### Fix IOError

Replace `self.file.write(chunk.read())` in models.py

::

with open(self.file.path, 'ab') as f:
f.write(chunk.read())
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
wsgiref==0.1.2
gunicorn==19.0.0
Django==1.6.5
gunicorn==19.9.0
Django==1.8.19
django-chunked-upload