(binary)
| 558 | |
| 559 | @exceptions_handler(Exception) |
| 560 | def print_source_version(binary): |
| 561 | print("== Source Version ==") |
| 562 | |
| 563 | version = binary.source_version.version |
| 564 | |
| 565 | print("Version: {:d}.{:d}.{:d}.{:d}.{:d}".format(*version)) |
| 566 | |
| 567 | print("") |
| 568 | |
| 569 | |
| 570 | @exceptions_handler(Exception) |