mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-22 14:11:27 +00:00
fix cyclic import issues
This commit is contained in:
parent
9ef0413aeb
commit
7f5cd2c4d4
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,6 @@
|
|||
from .errors import Error
|
||||
|
||||
from .process import prepare_subprocess_env
|
||||
from ..platform import SaveFile
|
||||
from ..platformflags import is_win32
|
||||
|
||||
from ..constants import * # NOQA
|
||||
|
@ -99,6 +98,7 @@ def get_cache_dir():
|
|||
# For information about cache directory tags, see:
|
||||
# http://www.bford.info/cachedir/spec.html
|
||||
""").encode('ascii')
|
||||
from ..platform import SaveFile
|
||||
with SaveFile(cache_tag_fn, binary=True) as fd:
|
||||
fd.write(cache_tag_contents)
|
||||
return cache_dir
|
||||
|
|
Loading…
Reference in a new issue