Fixed syntax error in pyinstaller.spec

This commit is contained in:
Micah Lee 2017-02-21 17:07:14 -08:00
parent 37539c95b6
commit 27835322db

View File

@ -12,10 +12,10 @@ a = Analysis(
datas=[
('../share/license.txt', 'share'),
('../share/version.txt', 'share'),
('../share/wordlist.txt', 'share')
('../share/wordlist.txt', 'share'),
('../share/images/*', 'share/images'),
('../share/locale/*', 'share/locale'),
('../share/html/*', 'share/html'),
('../share/html/*', 'share/html')
],
hiddenimports=[],
hookspath=[],