Reflect renaming of openlp.pyw -> openlp.py in windows/osx build scripts.

bzr-revno: 9
Fixes: https://launchpad.net/bugs/779201, https://launchpad.net/bugs/814838
This commit is contained in:
Martin Zibricky 2013-02-05 20:45:39 +01:00 committed by Andreas Preikschat
commit df91c7144c
2 changed files with 2 additions and 2 deletions

View File

@ -280,7 +280,7 @@ class MacosxBuilder(object):
self.docs_path = self.config.get(u'paths', u'documentation')
self.openlp_script = os.path.abspath(
os.path.join(self.branch_path, u'openlp.pyw'))
os.path.join(self.branch_path, u'openlp.py'))
self.hooks_path = os.path.abspath(os.path.join(
self.branch_path, self.config.get(u'paths', u'hooks')))
self.mac_icon = os.path.abspath(

View File

@ -270,7 +270,7 @@ class WindowsBuilder(object):
else:
self.portable_path = u''
self.openlp_script = os.path.abspath(
os.path.join(branch_path, u'openlp.pyw'))
os.path.join(branch_path, u'openlp.py'))
self.hooks_path = os.path.abspath(self.config.get(u'paths', u'hooks'))
self.win32_icon = os.path.abspath(
self.config.get(u'paths', u'win32icon'))