Updated Python plugin for API changes

This commit is contained in:
James Booth
2016-02-23 21:24:50 +00:00
parent 9e7f472b23
commit 0557eff53b
8 changed files with 99 additions and 132 deletions

View File

@@ -6,4 +6,11 @@ def _cmd_platform():
prof.cons_show(result_summary)
def prof_init(version, status):
prof.register_command("/platform", 0, 0, "/platform", "Output system information.", "Output system information", _cmd_platform)
synopsis = [
"/platform"
]
description = "Output system information to the console window."
args = []
examples = []
prof.register_command("/platform", 0, 0, synopsis, description, args, examples, _cmd_platform)