diff -r 14555b50b6c0 -r 1492fbafd273 PluginPyInstaller.py --- a/PluginPyInstaller.py Sun Jan 21 17:01:12 2018 +0100 +++ b/PluginPyInstaller.py Sun Jan 21 17:05:56 2018 +0100 @@ -297,8 +297,8 @@ """<b>Execute PyInstaller</b>""" """<p>Generate a distribution package using PyInstaller.""" """ The command is executed in the project path. All""" - """ files and directories must be given absolute or""" - """ relative to the project directory.</p>""" + """ files and directories must be given as absolute paths or""" + """ as paths relative to the project path.</p>""" )) act.triggered.connect(self.__pyinstaller) menu.addAction(act) @@ -313,10 +313,10 @@ self.tr('Generate a spec file to be used by PyInstaller')) act.setWhatsThis(self.tr( """<b>Make PyInstaller Spec File</b>""" - """<p>Generate a spec file to be used by PyInstaller""" - """ PyInstaller. The command is executed in the project""" - """ path. All files and directories must be given absolute""" - """ or relative to the project directory.</p>""" + """<p>Generate a spec file to be used by PyInstaller.""" + """ The command is executed in the project path. All""" + """ files and directories must be given as absolute paths or""" + """ as paths relative to the project path.</p>""" )) act.triggered.connect(self.__pyiMakeSpec) menu.addAction(act)