Fix stop date option for run_failure_rate graph
This commit fixes a copy and paste error where the start date was incorrectly being used for the stop date too. Change-Id: I9e33350e5735b69bd3f41806961ead7dcf743197
This commit is contained in:
@@ -35,7 +35,7 @@ def generate_series():
|
|||||||
else:
|
else:
|
||||||
start_date = None
|
start_date = None
|
||||||
if CONF.stop_date:
|
if CONF.stop_date:
|
||||||
stop_date = datetime.datetime.strptime(CONF.start_date, '%Y-%m-%d')
|
stop_date = datetime.datetime.strptime(CONF.stop_date, '%Y-%m-%d')
|
||||||
else:
|
else:
|
||||||
stop_date = None
|
stop_date = None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user