Make begin and end optional when get dataframes

when get dataframes with `cloudkitty storage-dataframe-list`,
begin and end is mandatory. make it optional like get total

Change-Id: I0a0f4073888621833b0bb6588a0452a642327797
Closes-Bug: #1640372
This commit is contained in:
Aaron-DH
2016-11-09 14:51:37 +08:00
parent e6daa3df81
commit d0f0aaf346

View File

@@ -19,10 +19,10 @@ from cloudkittyclient.common import utils
@utils.arg('-b', '--begin',
help='Starting date/time (YYYY-MM-ddThh:mm:ss)',
required=True)
required=False)
@utils.arg('-e', '--end',
help='Ending date/time (YYYY-MM-ddThh:mm:ss)',
required=True)
required=False)
@utils.arg('-t', '--tenant',
help='Tenant ID',
required=False,