Rename pio account info command to pio account show

This commit is contained in:
Ivan Kravets
2016-12-05 14:59:16 +02:00
parent 44e11bcc33
commit 9867de7a41
3 changed files with 6 additions and 6 deletions

View File

@ -9,9 +9,9 @@
See the License for the specific language governing permissions and
limitations under the License.
.. _cmd_account_info:
.. _cmd_account_show:
platformio account info
platformio account show
=======================
.. contents::
@ -21,7 +21,7 @@ Usage
.. code-block:: bash
platformio account info
platformio account show
Description

View File

@ -35,9 +35,9 @@ To print all available commands and options use:
:maxdepth: 2
cmd_forgot
cmd_info
cmd_login
cmd_logout
cmd_password
cmd_register
cmd_show
cmd_token

View File

@ -61,6 +61,6 @@ def account_forgot(**kwargs):
pioplus_call(sys.argv[1:])
@cli.command("info", short_help="PIO Account information: groups, permissions")
def account_info():
@cli.command("show", short_help="PIO Account information: groups, permissions")
def account_show():
pioplus_call(sys.argv[1:])