(self)
| 210 | return name, folder |
| 211 | |
| 212 | def handle_errors(self): |
| 213 | if self.PASSWORD_ERROR_ROKEN in self.data: |
| 214 | self.fail(_("Wrong password")) |
| 215 | |
| 216 | if self.captcha.task: |
| 217 | if self.CAPTCHA_ERROR_ROKEN in self.data: |
| 218 | self.retry_captcha() |
| 219 | else: |
| 220 | self.captcha.correct() |
| 221 | |
| 222 | def handle_link_source(self, source): |
| 223 | if source == "cnl2": |
no test coverage detected