163 self.__projectBrowserAct.setWhatsThis(self.trUtf8( |
163 self.__projectBrowserAct.setWhatsThis(self.trUtf8( |
164 """<b>Check Indentations...</b>""" |
164 """<b>Check Indentations...</b>""" |
165 """<p>This checks Python files""" |
165 """<p>This checks Python files""" |
166 """ for bad indentations using tabnanny.</p>""" |
166 """ for bad indentations using tabnanny.</p>""" |
167 )) |
167 )) |
168 self.__projectBrowserAct.triggered[()].connect(self.__projectBrowserTabnanny) |
168 self.__projectBrowserAct.triggered[()].connect( |
|
169 self.__projectBrowserTabnanny) |
169 if not self.__projectBrowserAct in menu.actions(): |
170 if not self.__projectBrowserAct in menu.actions(): |
170 menu.addAction(self.__projectBrowserAct) |
171 menu.addAction(self.__projectBrowserAct) |
171 |
172 |
172 def __projectTabnanny(self): |
173 def __projectTabnanny(self): |
173 """ |
174 """ |