commit | 79f02fee1a542c440fd906fd54154c73fc0f8235 | [log] [tgz] |
---|---|---|
author | Xtreak <tir.karthi@gmail.com> | Mon Dec 16 05:04:12 2019 +0530 |
committer | Nick Coghlan <ncoghlan@gmail.com> | Mon Dec 16 09:34:12 2019 +1000 |
tree | 33368ca08ce4e6560eccfcf0fa173a2ad19344e1 | |
parent | d587272fe3b0fcad2f23a490e76f9f82ca7d64ef [diff] [blame] |
bpo-39033: Fix NameError in zipimport during hash validation (GH-17588) Patch by Karthikeyan Singaravelan.
diff --git a/Lib/zipimport.py b/Lib/zipimport.py index fd917c1..5ef0a17 100644 --- a/Lib/zipimport.py +++ b/Lib/zipimport.py
@@ -608,7 +608,7 @@ ) try: - _boostrap_external._validate_hash_pyc( + _bootstrap_external._validate_hash_pyc( data, source_hash, fullname, exc_details) except ImportError: return None