Files
django-dav-events/dav_base/tests/utils.py
heinzel 811983abfe
All checks were successful
buildbot/django-dav-events--test Build done.
Make tox work with python 3.11
2023-05-24 09:47:38 +02:00

11 lines
264 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
from tempfile import mkdtemp as _mkdtemp
def mkdtemp(prefix, base_dir):
if not os.path.exists(base_dir):
os.makedirs(base_dir)
return _mkdtemp(prefix=prefix, dir=base_dir)