Commit e622e63c by Daniel Friedman

Catch PluginMissingError when generating component templates

parent f9080590
...@@ -286,9 +286,15 @@ def get_component_templates(courselike, library=False): ...@@ -286,9 +286,15 @@ def get_component_templates(courselike, library=False):
for advanced_problem_type in ADVANCED_PROBLEM_TYPES: for advanced_problem_type in ADVANCED_PROBLEM_TYPES:
component = advanced_problem_type['component'] component = advanced_problem_type['component']
boilerplate_name = advanced_problem_type['boilerplate_name'] boilerplate_name = advanced_problem_type['boilerplate_name']
component_display_name = xblock_type_display_name(component) try:
templates_for_category.append(create_template_dict(component_display_name, component, boilerplate_name)) component_display_name = xblock_type_display_name(component)
categories.add(component) except PluginMissingError:
log.warning('Unable to load xblock type %s to read display_name', component, exc_info=True)
else:
templates_for_category.append(
create_template_dict(component_display_name, component, boilerplate_name)
)
categories.add(component)
component_templates.append({ component_templates.append({
"type": category, "type": category,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment