Explorar o código

fix cyclic import issues

Thomas Waldmann %!s(int64=3) %!d(string=hai) anos
pai
achega
7f5cd2c4d4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/borg/helpers/fs.py

+ 1 - 1
src/borg/helpers/fs.py

@@ -10,7 +10,6 @@ import textwrap
 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