diff options
-rw-r--r-- | libs/fcache/posixemulation.py | 6 | ||||
-rw-r--r-- | libs/version.txt | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libs/fcache/posixemulation.py b/libs/fcache/posixemulation.py index 03d6982c3..b8a1c393c 100644 --- a/libs/fcache/posixemulation.py +++ b/libs/fcache/posixemulation.py @@ -92,13 +92,13 @@ if os.name == 'nt': # pragma: no cover return # Fall back to "move away and replace" try: - os.rename(src, dst) + shutil.move(src, dst) except OSError as e: if e.errno != errno.EEXIST: raise old = "%s-%08x" % (dst, random.randint(0, sys.maxint)) - os.rename(dst, old) - os.rename(src, dst) + shutil.move(dst, old) + shutil.move(src, dst) try: os.unlink(old) except Exception: diff --git a/libs/version.txt b/libs/version.txt index 13afd5a8e..62e337c0b 100644 --- a/libs/version.txt +++ b/libs/version.txt @@ -128,7 +128,7 @@ webencodings==0.5.1 # Required-by: subzero backports.functools-lru-cache==1.6.4 -fcache==0.4.7 # https://github.com/tsroten/fcache/pull/34 +fcache==0.4.7 # https://github.com/tsroten/fcache/pull/34 and 35 json_tricks==3.16.1 tld==0.12.6 # https://github.com/barseghyanartur/tld/pull/119 |