generate function to use for terminal formatting
(self,
spacer=" ")
| 569 | fp_cleaner) |
| 570 | |
| 571 | def _get_terminal_display_formatter(self, |
| 572 | spacer=" "): |
| 573 | """ generate function to use for terminal formatting |
| 574 | """ |
| 575 | dirname_output_format = "%s/" |
| 576 | fname_output_format = spacer + "%s" |
| 577 | fp_format = '%s/%s' |
| 578 | |
| 579 | return self._get_display_formatter(dirname_output_format, |
| 580 | fname_output_format, |
| 581 | fp_format) |
| 582 | |
| 583 | def _format_path(self): |
| 584 | result_lines = [] |
no test coverage detected