diff options
author | shirt-dev <2660574+shirt-dev@users.noreply.github.com> | 2021-02-15 14:16:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 00:46:23 +0530 |
commit | 47930b73a5e845be64a1e94b96c7ca67536f5f93 (patch) | |
tree | c845afff6a2d9c9a86a73617f07e5b89da1ae74a /pyinst.py | |
parent | 1de75fa129775b6d1ea57686299e0aeadb9a8ab8 (diff) | |
download | hypervideo-pre-47930b73a5e845be64a1e94b96c7ca67536f5f93.tar.lz hypervideo-pre-47930b73a5e845be64a1e94b96c7ca67536f5f93.tar.xz hypervideo-pre-47930b73a5e845be64a1e94b96c7ca67536f5f93.zip |
Fix build.yml hashing and crypto support (#87)
Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com>
Diffstat (limited to 'pyinst.py')
-rw-r--r-- | pyinst.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ PyInstaller.__main__.run([ '--exclude-module=test', '--exclude-module=ytdlp_plugins', '--hidden-import=mutagen', - '--hidden-import=%s' % ('Crypto' if _x86 else 'pycryptodome'), + '--hidden-import=pycryptodome', 'youtube_dlc/__main__.py', ]) SetVersion('dist/youtube-dlc%s.exe' % _x86, VERSION_FILE) |