(self, line)
| 659 | print(" that match it are printed.", file=self.stream) |
| 660 | |
| 661 | def do_add(self, line): |
| 662 | if self.stats: |
| 663 | try: |
| 664 | self.stats.add(line) |
| 665 | except OSError as e: |
| 666 | print("Failed to load statistics for %s: %s" % (line, e), file=self.stream) |
| 667 | else: |
| 668 | print("No statistics object is loaded.", file=self.stream) |
| 669 | return 0 |
| 670 | def help_add(self): |
| 671 | print("Add profile info from given file to current statistics object.", file=self.stream) |
| 672 |