Skip to content

Commit

Permalink
Fix case in spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
EarToEarOak committed Sep 18, 2016
1 parent cd06706 commit 7901abf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyinstaller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create_version():
strings.append(versioninfo.StringStruct('FileDescription',
'Spectrum Analyser'))
strings.append(versioninfo.StringStruct('LegalCopyright',
'Copyright 2012 - 2015 Al Brown'))
'Copyright 2012 - 2016 Al Brown'))
table = versioninfo.StringTable('040904B0', strings)
sInfo = versioninfo.StringFileInfo([table])
var = versioninfo.VarStruct('Translation', [2057, 1200])
Expand All @@ -67,7 +67,7 @@ def build(version=None):
architecture, _null = platform.architecture()
filename = 'rtlsdr_scan-' + system + '-' + architecture.lower()

excludes = ['pyside', 'qt', 'scipy']
excludes = ['PySide', 'qt', 'scipy']
a = Analysis(['src/rtlsdr_scan.py'],
excludes=excludes)

Expand Down

0 comments on commit 7901abf

Please sign in to comment.