Commit 500c45fe by Victor Shnayder

address comment on #392

parent 60781b8a
...@@ -17,8 +17,8 @@ def try_staticfiles_lookup(path): ...@@ -17,8 +17,8 @@ def try_staticfiles_lookup(path):
except Exception as err: except Exception as err:
log.warning("staticfiles_storage couldn't find path {}: {}".format( log.warning("staticfiles_storage couldn't find path {}: {}".format(
path, str(err))) path, str(err)))
# Just return a dead link--don't kill everything. # Just return the original path; don't kill everything.
url = "file_not_found" url = path
return url return url
......
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