Fix using one str to initialize three variables on a single line

Change-Id: Icacf891cb197b1ee583cb55d3f16bfb68c36103b
This commit is contained in:
smile-luobin 2016-12-07 20:26:25 +08:00 committed by Yuval Brik
parent 5c5ccc46be
commit 5f24a51f1b
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class IndexView(horizon_tables.DataTableView):
reversed_order=reversed_order)
for scheduledoperation in scheduledoperations:
plan_name, provider_name, trigger_name = ''
plan_name, provider_name, trigger_name = '', '', ''
operation_definition = scheduledoperation.operation_definition
if "plan_id" in operation_definition.keys():