Skip to content

Commit edeff99

Browse files
improved help message for invoices
1 parent 37696f0 commit edeff99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SoftLayer/CLI/account/invoice_detail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
help="Shows a very detailed list of charges")
1616
@environment.pass_env
1717
def cli(env, identifier, details):
18-
"""Invoices and all that mess"""
18+
"""Invoice details"""
1919

2020
manager = AccountManager(env.client)
2121
top_items = manager.get_billing_items(identifier)

SoftLayer/CLI/account/invoices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
help="Return ALL invoices. There may be a lot of these.")
1919
@environment.pass_env
2020
def cli(env, limit, closed=False, get_all=False):
21-
"""Invoices and all that mess"""
21+
"""List invoices"""
2222

2323
manager = AccountManager(env.client)
2424
invoices = manager.get_invoices(limit, closed, get_all)

0 commit comments

Comments
 (0)