(self)
| 1805 | pass |
| 1806 | |
| 1807 | def run(self): |
| 1808 | vers = get_versions(verbose=True) |
| 1809 | print("Version: %s" % vers["version"]) |
| 1810 | print(" full-revisionid: %s" % vers.get("full-revisionid")) |
| 1811 | print(" dirty: %s" % vers.get("dirty")) |
| 1812 | print(" date: %s" % vers.get("date")) |
| 1813 | if vers["error"]: |
| 1814 | print(" error: %s" % vers["error"]) |
| 1815 | |
| 1816 | cmds["version"] = cmd_version |
| 1817 |
nothing calls this directly
no test coverage detected