(self)
| 777 | self.help_capture() |
| 778 | |
| 779 | def help_capture(self): |
| 780 | print("Print job operations: capture <operation>") |
| 781 | print(" capture start - Record future print jobs.") |
| 782 | print(" capture stop - End capturing print jobs.") |
| 783 | print(" capture list - Show captured print jobs.") |
| 784 | print(" capture fetch - Save captured print jobs.") |
| 785 | print(" capture print - Reprint saved print jobs.") |
| 786 | |
| 787 | options_capture = ('start', 'stop', 'list', 'fetch', 'print') |
| 788 |