diff options
author | Aldo Cortesi <aldo@corte.si> | 2016-12-12 11:13:32 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 11:13:32 +1300 |
commit | a4ac5b158f512206ae1bb1682052195b0082b01a (patch) | |
tree | 161c388960bba98e566853d4684397f695c19b8b /release/hooks/hook-cryptography.py | |
parent | a99bf0814c6ce789164f6a28a4e622aa6e37d72b (diff) | |
parent | 980a84326bf2daa398b201fd3722696476c4913d (diff) | |
download | mitmproxy-a4ac5b158f512206ae1bb1682052195b0082b01a.tar.gz mitmproxy-a4ac5b158f512206ae1bb1682052195b0082b01a.tar.bz2 mitmproxy-a4ac5b158f512206ae1bb1682052195b0082b01a.zip |
Merge branch 'master' into optsave
Diffstat (limited to 'release/hooks/hook-cryptography.py')
-rw-r--r-- | release/hooks/hook-cryptography.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/hooks/hook-cryptography.py b/release/hooks/hook-cryptography.py index d53a438b..5ecbd6cc 100644 --- a/release/hooks/hook-cryptography.py +++ b/release/hooks/hook-cryptography.py @@ -1,4 +1,5 @@ # Taken from the latest pyinstaller master on 2016-11-27 (0729a2b). +# flake8: noqa #----------------------------------------------------------------------------- # Copyright (c) 2005-2016, PyInstaller Development Team. @@ -40,4 +41,4 @@ cryptography_dir = os.path.dirname(get_module_file_attribute('cryptography')) for ext in EXTENSION_SUFFIXES: ffimods = glob.glob(os.path.join(cryptography_dir, '*_cffi_*%s*' % ext)) for f in ffimods: - binaries.append((f, 'cryptography'))
\ No newline at end of file + binaries.append((f, 'cryptography')) |