From d5af08c1c47dbfcc37f3c7fc86d759360f160e75 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 21 Feb 2017 17:07:14 -0800 Subject: [PATCH] Fixed syntax error in pyinstaller.spec --- install/pyinstaller.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/pyinstaller.spec b/install/pyinstaller.spec index 3c5a7fe0..de88dd09 100644 --- a/install/pyinstaller.spec +++ b/install/pyinstaller.spec @@ -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=[],