fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Some housekeeping
[redakcja.git]
/
src
/
fileupload
/
views.py
diff --git
a/src/fileupload/views.py
b/src/fileupload/views.py
index
3e6b999
..
56a198e
100644
(file)
--- a/
src/fileupload/views.py
+++ b/
src/fileupload/views.py
@@
-1,3
+1,6
@@
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
import json
import os
from urllib.parse import quote
import json
import os
from urllib.parse import quote
@@
-129,7
+132,7
@@
class UploadView(FormView):
os.makedirs(path)
data = []
for f in flist:
os.makedirs(path)
data = []
for f in flist:
- with open(self.get_safe_path(f.name), 'w') as destination:
+ with open(self.get_safe_path(f.name), 'w
b
') as destination:
for chunk in f.chunks():
destination.write(chunk)
data.append({
for chunk in f.chunks():
destination.write(chunk)
data.append({