mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
use system path separator on FILES_UPLOAD_DIR default setting
This commit is contained in:
parent
e06a25e079
commit
ce04a5da83
1 changed files with 3 additions and 1 deletions
|
|
@ -4,4 +4,6 @@ __copyright__ = 'Copyright (c) 2014 Artur Barseghyan'
|
|||
__license__ = 'GPL 2.0/LGPL 2.1'
|
||||
__all__ = ('FILES_UPLOAD_DIR',)
|
||||
|
||||
FILES_UPLOAD_DIR = 'fobi_plugins/file'
|
||||
import os
|
||||
|
||||
FILES_UPLOAD_DIR = os.path.join('fobi_plugins', 'file')
|
||||
|
|
|
|||
Loading…
Reference in a new issue