(self, line)
| 711 | print(" that match it are printed.", file=self.stream) |
| 712 | |
| 713 | def do_add(self, line): |
| 714 | if self.stats: |
| 715 | try: |
| 716 | self.stats.add(line) |
| 717 | except OSError as e: |
| 718 | print("Failed to load statistics for %s: %s" % (line, e), file=self.stream) |
| 719 | else: |
| 720 | print("No statistics object is loaded.", file=self.stream) |
| 721 | return 0 |
| 722 | def help_add(self): |
| 723 | print("Add profile info from given file to current statistics object.", file=self.stream) |
| 724 |