mirror of
https://github.com/django/django.git
synced 2025-09-29 05:24:55 +00:00
Simplified TemplateDetailView with pathlib.Path.read_text().
This commit is contained in:
parent
f97a6123c0
commit
62254c5202
1 changed files with 1 additions and 2 deletions
|
@ -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({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue