Actions
Bug #8321
closedRegression in 6e916e5 - Templates for image-based hosts can no longer be rendered
Difficulty:
trivial
Triaged:
Pull request:
Description
in #746, the method which retrieves available templates was refactored. In doing so, an error was introduced, where we try to call
self.compute_attributes.cr.image_param_name
however, compute_attributes is a normal hash, it has no cr method. It should be
self.compute_attributes[cr.image_param_name]
PR incoming, with a test to cover it.
Actions