Skip to content

Commit 8a99ec2

Browse files
committed
clear help
1 parent fa781e7 commit 8a99ec2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

SoftLayer/CLI/billing/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""List BIlling information of Accounts."""
1+
"""List billing details of Account."""
22
# :license: MIT, see LICENSE for more details.
33

44

@@ -12,7 +12,7 @@
1212
@click.command()
1313
@environment.pass_env
1414
def cli(env):
15-
"""List billing information for accounts."""
15+
"""List billing details of Account."""
1616
billing = SoftLayer.BillingManager(env.client)
1717
table = formatting.Table(['Name', 'Value'])
1818
info = billing.get_info()

SoftLayer/CLI/billing/list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""List BIlling information of Accounts."""
1+
"""List billing information of orders."""
22
# :license: MIT, see LICENSE for more details.
33

44

@@ -16,7 +16,7 @@
1616
help='end date to consider, default is latest time stamp')
1717
@environment.pass_env
1818
def cli(env, start_date, end_date):
19-
"""List billing information for accounts."""
19+
"""List billing information for orders."""
2020
billing = SoftLayer.BillingManager(env.client)
2121
from_date = start_date
2222
to_date = end_date

0 commit comments

Comments
 (0)