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:
Matthew Treinish 2017-03-06 10:59:15 -05:00
parent c7c7f83f45
commit 734ec6b14c
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ def generate_series():
else:
start_date = None
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:
stop_date = None