10000 Merge pull request #13453 from meeseeksmachine/auto-backport-of-pr-13… · matplotlib/matplotlib@2ab4767 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2ab4767

Browse files
authored
Merge pull request #13453 from meeseeksmachine/auto-backport-of-pr-13451-on-v3.0.x
Backport PR #13451 on branch v3.0.x (MNT: fix logic error where we never try the second freetype URL)
2 parents 4677728 + e2ff81f commit 2ab4767

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
@@ -1170,8 +1170,8 @@ def do_custom_build(self):
11701170
tar_contents = download_or_cache(tarball_url,
11711171
LOCAL_FREETYPE_HASH)
11721172
break
1173-
except Exception as ex:
1174-
raise ex
1173+
except Exception:
1174+
pass
11751175
else:
11761176
raise IOError("Failed to download FreeType. Please download " +
11771177
"one of {target_urls} ".format(

0 commit comments

Comments
 (0)
0