Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4de6dfb

Browse files
committed
FIX: logic bug that never tries the second mirror for freetype
1 parent 8559f04 commit 4de6dfb

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
@@ -1275,8 +1275,8 @@ def do_custom_build(self):
12751275
tar_contents = download_or_cache(tarball_url,
12761276
LOCAL_FREETYPE_HASH)
12771277
break
1278-
except Exception as ex:
1279-
raise ex
1278+
except Exception:
1279+
pass
12801280
else:
12811281
raise IOError("Failed to download FreeType. Please download " +
12821282
"one of {target_urls} ".format(

0 commit comments

Comments
 (0)