8000 Merge pull request #13451 from tacaswell/fix_cache_logic · matplotlib/matplotlib@f5c88b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit f5c88b4

Browse files
authored
Merge pull request #13451 from tacaswell/fix_cache_logic
MNT: fix logic error where we never try the second freetype URL
2 parents 72cad98 + 4abf7db commit f5c88b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setupext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,8 +983,8 @@ def do_custom_build(self):
983983
tar_contents = download_or_cache(tarball_url,
984984
LOCAL_FREETYPE_HASH)
985985
break
986-
except Exception as ex:
987-
raise ex
986+
except Exception:
987+
pass
988988
else:
989989
raise IOError("Failed to download FreeType. Please download " +
990990
"one of {target_urls} ".format(

0 commit comments

Comments
 (0)
0