imports are to folders, not files

This commit is contained in:
Carl Beekhuizen 2022-01-27 10:35:30 -08:00
parent dfcd559212
commit 04cf193c35
No known key found for this signature in database
GPG Key ID: 8F29E54F49E7AAB5
3 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@ a = Analysis(['../../staking_deposit/deposit.py'],
binaries=[],
datas=[
('../../staking_deposit/key_handling/key_derivation/word_lists/*.txt', './staking_deposit/key_handling/key_derivation/word_lists/'),
('../../staking_deposit/intl/', './staking_deposit/intl',),
('../../staking_deposit/intl/en/cli/existing_mnemonic.json', './staking_deposit/intl/en/cli/existing_mnemonic.json',)
('../../staking_deposit/intl/*', './staking_deposit/intl',),
('../../staking_deposit/intl/en/cli/existing_mnemonic.json', './staking_deposit/intl/en/cli/',)
],
hiddenimports=[],
hookspath=[],

View File

@ -7,7 +7,7 @@ a = Analysis(['../../staking_deposit/deposit.py'],
binaries=None,
datas=[
('../../staking_deposit/key_handling/key_derivation/word_lists/*.txt', './staking_deposit/key_handling/key_derivation/word_lists/'),
('../../staking_deposit/intl/', './staking_deposit/intl'),
('../../staking_deposit/intl/*.*', './staking_deposit/intl'),
],
hiddenimports=[],
hookspath=[],

View File

@ -7,7 +7,7 @@ a = Analysis(['..\\..\\staking_deposit\\deposit.py'],
binaries=[],
datas=[
('..\\..\\staking_deposit\\key_handling\\key_derivation\\word_lists\\*.txt', '.\\staking_deposit\\key_handling\\key_derivation\\word_lists'),
('..\\..\\staking_deposit\\intl\\', '.\\staking_deposit\\intl'),
('..\\..\\staking_deposit\\intl\\*', '.\\staking_deposit\\intl'),
],
hiddenimports=[],
hookspath=[],