Fixed syntax error in pyinstaller.spec

This commit is contained in:
Micah Lee 2017-02-21 17:07:14 -08:00
parent 248f59cbd1
commit d5af08c1c4
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

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=[],