(remote)
| 335 | |
| 336 | |
| 337 | def remove(remote): |
| 338 | if globals['verbose']: |
| 339 | info(remote) |
| 340 | result = raw_input('Do you really want to remove this directory? [y|n]: ') |
| 341 | if result.lower() not in ('y', 'yes'): |
| 342 | log('Aborted', abort=True) |
| 343 | remote.removedir(remote.root) |
| 344 | |
| 345 | |
| 346 | def main(): |