handles important things to do before starting
(self, thread)
| 222 | pass |
| 223 | |
| 224 | def preprocessing(self, thread): |
| 225 | """ handles important things to do before starting """ |
| 226 | self.thread = thread |
| 227 | |
| 228 | if self.account: |
| 229 | self.account.checkLogin(self.user) |
| 230 | else: |
| 231 | self.req.clearCookies() |
| 232 | |
| 233 | self.setup() |
| 234 | |
| 235 | self.pyfile.setStatus("starting") |
| 236 | |
| 237 | return self.process(self.pyfile) |
| 238 | |
| 239 | |
| 240 | def process(self, pyfile): |