(self)
| 163 | return translate |
| 164 | |
| 165 | def toggleAutorun(self): |
| 166 | if self.isAutorunEnabled(): |
| 167 | os.unlink(self.getAutorunPath()) |
| 168 | else: |
| 169 | open(self.getAutorunPath(), "w").write(self.formatAutorun()) |
nothing calls this directly
no test coverage detected