fnp
/
audio.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix
[audio.git]
/
apps
/
archive
/
forms.py
diff --git
a/apps/archive/forms.py
b/apps/archive/forms.py
index
772ec0a
..
922bd28
100755
(executable)
--- a/
apps/archive/forms.py
+++ b/
apps/archive/forms.py
@@
-23,7
+23,10
@@
class AudiobookForm(forms.ModelForm):
if not os.path.isdir(FILES_PATH):
os.makedirs(FILES_PATH)
# save the file in model
if not os.path.isdir(FILES_PATH):
os.makedirs(FILES_PATH)
# save the file in model
- m.source_file.save(os.path.basename(path), ExistingFile(path))
+
+ m.source_file.save(
+ os.path.join(FILES_PATH, os.path.basename(path)),
+ ExistingFile(path))
if commit:
m.save()
if commit:
m.save()