Commit 5b8555c0 by Branch Vincent Committed by Arun Babu Neelicattu

plugins: hide deprecated command

parent d5c22c26
...@@ -43,6 +43,7 @@ It works similarly to the <c1>add</c1> command: ...@@ -43,6 +43,7 @@ It works similarly to the <c1>add</c1> command:
{deprecation} {deprecation}
""" """
hidden = True
def handle(self) -> int: def handle(self) -> int:
self.line_error(self.deprecation) self.line_error(self.deprecation)
......
...@@ -36,6 +36,8 @@ class PluginRemoveCommand(Command): ...@@ -36,6 +36,8 @@ class PluginRemoveCommand(Command):
"</warning>" "</warning>"
) )
hidden = True
def handle(self) -> int: def handle(self) -> int:
self.line_error(self.help) self.line_error(self.help)
......
...@@ -19,6 +19,7 @@ class PluginShowCommand(Command): ...@@ -19,6 +19,7 @@ class PluginShowCommand(Command):
"<warning>This command is deprecated. Use <c2>self show plugins</> " "<warning>This command is deprecated. Use <c2>self show plugins</> "
"command instead.</warning>" "command instead.</warning>"
) )
hidden = True
def handle(self) -> int: def handle(self) -> int:
self.line_error(self.help) self.line_error(self.help)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment