src/eric7/HelpViewer/HelpViewerWidget.py

branch
eric7
changeset 10313
8f69edb4ad73
parent 10254
25e8e133e4f8
child 10439
21c28b0f9e41
equal deleted inserted replaced
10312:bf39dd80404d 10313:8f69edb4ad73
683 @return path of the QtHelp collection file 683 @return path of the QtHelp collection file
684 @rtype str 684 @rtype str
685 """ 685 """
686 qthelpDir = os.path.join(Globals.getConfigDir(), "qthelp") 686 qthelpDir = os.path.join(Globals.getConfigDir(), "qthelp")
687 if not os.path.exists(qthelpDir): 687 if not os.path.exists(qthelpDir):
688 os.makedirs(qthelpDir) 688 os.makedirs(qthelpDir, exist_ok=True)
689 return os.path.join(qthelpDir, "eric7help.qhc") 689 return os.path.join(qthelpDir, "eric7help.qhc")
690 690
691 @pyqtSlot(str) 691 @pyqtSlot(str)
692 def __warning(self, msg): 692 def __warning(self, msg):
693 """ 693 """

eric ide

mercurial