6 lines
191 B
Python
6 lines
191 B
Python
import tempfile
|
|
|
|
from common.conf import settings as common_settings
|
|
|
|
TEMPORARY_DIRECTORY = common_settings.TEMPORARY_DIRECTORY if common_settings.TEMPORARY_DIRECTORY else tempfile.mkdtemp()
|