Show the view.
(cls)
| 66 | |
| 67 | @classmethod |
| 68 | def print_log(cls): |
| 69 | """ |
| 70 | Show the view. |
| 71 | """ |
| 72 | for _tuple in Log.history: |
| 73 | print '\t'.join(_tuple) |
| 74 | print '---------------------------' |
| 75 | print '\t\t ==', Log.holidays() |
| 76 | |
| 77 | @classmethod |
| 78 | def save_log(cls): |