(self, str, length)
| 481 | print("\n") # Two blank lines between failures, for visual separation |
| 482 | |
| 483 | def Truncate(self, str, length): |
| 484 | if length and (len(str) > (length - 3)): |
| 485 | return str[:(length-3)] + "..." |
| 486 | else: |
| 487 | return str |
| 488 | |
| 489 | def PrintProgress(self, name): |
| 490 | self.ClearLine(self.last_status_length) |