331 self.tr('Remove the PyInstaller created directories')) |
331 self.tr('Remove the PyInstaller created directories')) |
332 act.setWhatsThis(self.tr( |
332 act.setWhatsThis(self.tr( |
333 """<b>Clean PyInstaller</b>""" |
333 """<b>Clean PyInstaller</b>""" |
334 """<p>Remove the PyInstaller created directories (dist and""" |
334 """<p>Remove the PyInstaller created directories (dist and""" |
335 """ build). These are subdirectories within the project""" |
335 """ build). These are subdirectories within the project""" |
336 """ path.""" |
336 """ path.</p>""" |
337 )) |
337 )) |
338 act.triggered.connect(self.__pyinstallerCleanup) |
338 act.triggered.connect(self.__pyinstallerCleanup) |
339 menu.addAction(act) |
339 menu.addAction(act) |
340 self.__projectActs.append(act) |
340 self.__projectActs.append(act) |
341 |
341 |