mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-15 09:42:57 -07:00
Fix missing ipwhois data in bundle package
This commit is contained in:
parent
980c4f7618
commit
ba3f6935db
2 changed files with 8 additions and 5 deletions
|
@ -15,7 +15,8 @@ analysis = Analysis(
|
|||
('../data', 'data'),
|
||||
('../CHANGELOG.md', '.'),
|
||||
('../LICENSE', '.'),
|
||||
('../version.txt', '.')
|
||||
('../version.txt', '.'),
|
||||
('../lib/ipwhois/data', 'data')
|
||||
],
|
||||
excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'],
|
||||
hiddenimports=['Foundation', 'AppKit'],
|
||||
|
|
|
@ -8,10 +8,12 @@ block_cipher = None
|
|||
analysis = Analysis(
|
||||
['..\\Tautulli.py'],
|
||||
pathex=['lib'],
|
||||
datas=[('..\\data', 'data'),
|
||||
datas=[
|
||||
('..\\data', 'data'),
|
||||
('..\\CHANGELOG.md', '.'),
|
||||
('..\\LICENSE', '.'),
|
||||
('..\\version.txt', '.')
|
||||
('..\\lib\\ipwhois\\data', 'data')
|
||||
],
|
||||
excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'],
|
||||
cipher=block_cipher,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue