summaryrefslogtreecommitdiff
path: root/troveclient/v1/backups.py
diff options
context:
space:
mode:
Diffstat (limited to 'troveclient/v1/backups.py')
-rw-r--r--troveclient/v1/backups.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/troveclient/v1/backups.py b/troveclient/v1/backups.py
index f314fdc..40ecbf2 100644
--- a/troveclient/v1/backups.py
+++ b/troveclient/v1/backups.py
@@ -248,8 +248,8 @@ class Backups(base.ManagerWithFind):
def execution_list_generator():
yielded = 0
for sexec in mistral_execution_generator():
- if (sexec.workflow_name == cron_trigger.workflow_name
- and ct_input == json.loads(sexec.input)):
+ if (sexec.workflow_name == cron_trigger.workflow_name and
+ ct_input == json.loads(sexec.input)):
yield ScheduleExecution(self, sexec.to_dict(),
loaded=True)
yielded += 1