Skip to content

Commit

Permalink
Handle case of 'all' value in template selections.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelcourt committed Aug 2, 2021
1 parent 42ffd20 commit 894cac3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -201,7 +201,7 @@ def perform_replacements(self, form_data):
self.status = _("Nothing to replace.")
return

templates = [uuidToObject(template_uuid) for template_uuid in form_data['selected_templates']]
templates = self.get_selected_templates(form_data)
self.results_table = {}

with SearchAndReplacePODTemplates(templates) as replace:
Expand Down

0 comments on commit 894cac3

Please sign in to comment.