Simplified TemplateDetailView with pathlib.Path.read_text().

This commit is contained in:
Jon Dufresne 2019-11-21 06:14:03 -08:00 committed by Carlton Gibson
parent f97a6123c0
commit 62254c5202
1 changed files with 1 additions and 2 deletions

View File

@ -330,8 +330,7 @@ class TemplateDetailView(BaseAdminDocsView):
for index, directory in enumerate(default_engine.dirs):
template_file = Path(directory) / template
if template_file.exists():
with template_file.open() as f:
template_contents = f.read()
template_contents = template_file.read_text()
else:
template_contents = ''
templates.append({