--- a/DocumentationTools/QtHelpGenerator.py Fri Oct 14 20:05:30 2016 +0200 +++ b/DocumentationTools/QtHelpGenerator.py Sat Oct 15 14:17:42 2016 +0200 @@ -274,7 +274,7 @@ os.chdir(self.htmlDir) subprocess.call([ os.path.join(getQtBinariesPath(), "qhelpgenerator"), - "source.qhp", "-o", os.path.join(self.outputDir, HelpHelpFile)]) + HelpProjectFile, "-o", os.path.join(self.outputDir, HelpHelpFile)]) os.remove(HelpProjectFile) if self.createCollection: @@ -284,6 +284,6 @@ os.chdir(self.outputDir) subprocess.call([ os.path.join(getQtBinariesPath(), "qcollectiongenerator"), - "source.qhcp", "-o", "collection.qhc"]) + HelpCollectionProjectFile, "-o", HelpCollectionFile]) os.chdir(cwd)