Skip to content

Commit

Permalink
Fix logout help text (#372)
Browse files Browse the repository at this point in the history
* Fix logout help text

* Fix account - organization
  • Loading branch information
atbagga committed Jan 23, 2019
1 parent 093f3f7 commit e81c25f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions azure-devops/azext_devops/dev/team/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


def credential_set(organization=None):
"""Set the credential (PAT) to use for a particular account
"""Set the credential (PAT) to use for a particular organization
:param organization: Azure Devops organization URL. Example: https://dev.azure.com/MyOrganizationName/
:type organization: str
"""
Expand All @@ -44,8 +44,9 @@ def credential_set(organization=None):


def credential_clear(organization=None):
"""Clear the credential for a particular account
:param organization: Azure Devops organization URL. Example: https://dev.azure.com/MyOrganizationName/
"""Clear the credential for all or a particular organization
:param organization: Azure Devops organization URL. Example: https://dev.azure.com/MyOrganizationName/.
If no organization is specified, all organizations will be logged out.
:type organization: str
"""
if organization is not None:
Expand Down

0 comments on commit e81c25f

Please sign in to comment.