use system path separator on FILES_UPLOAD_DIR default setting

This commit is contained in:
Thomas Wajs 2015-02-19 17:02:27 +01:00
parent e06a25e079
commit ce04a5da83

View file

@ -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')