Skip to content

Commit 3944ab9

Browse files
committed
Django 1.9: Supplied a required argument to TemplateDoesNotExist()
- Legacy-Id: 12616
1 parent 471bbde commit 3944ab9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def load_template_source(self, template_name, dirs):
113113
global template_coverage_collection, loaded_templates
114114
if template_coverage_collection == True:
115115
loaded_templates.add(str(template_name))
116-
raise TemplateDoesNotExist
116+
raise TemplateDoesNotExist(template_name)
117117
load_template_source.is_usable = True
118118

119119
class RecordUrlsMiddleware(object):

0 commit comments

Comments
 (0)