Error logging for when inline_file cant find static file

This commit is contained in:
Eric Bidelman 2016-11-15 15:59:35 -08:00
Родитель 522364e618
Коммит 176cf0d817
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,5 @@
import logging
from django import template
register = template.Library()
@ -8,6 +10,9 @@ def inline_file(path):
path = path[1:]
content = ''
with open(path, 'r') as f:
content = f.read()
try:
with open(path, 'r') as f:
content = f.read()
except IOError, e:
logging.error('inline_file cannot read file - ' + str(e))
return content