8000 FIX: fix transposition in cache logic · matplotlib/matplotlib@02fa430 · GitHub
[go: up one dir, main page]

Skip to content

Commit 02fa430

Browse files
committed
FIX: fix transposition in cache logic
1 parent f6f1f13 commit 02fa430

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ def do_custom_build(self):
10641064
try:
10651065
# this will fail on LPy, oh well
10661066
os.makedirs(tarball_cache_dir, exist_ok=True)
1067-
shutil.copy(tarball_cache_path, tarball_path)
1067+
shutil.copy(tarball_path, tarball_cache_path)
10681068
print('Cached tarball at: {}'
10691069
.format(tarball_cache 3C88 _path))
10701070
except:

0 commit comments

Comments
 (0)
0