diff options
| author | Jannis Leidel <jannis@leidel.info> | 2012-03-02 11:29:14 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2012-03-02 11:29:14 +0000 |
| commit | e88a65660f8d114b8c5e8670f228af7f4bdd81a0 (patch) | |
| tree | d3f6fe2c0cc91799a38503ef9be8d7b4d6237c62 /tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css | |
| parent | 746987f916bfb24a0671429d9993ad727dc7c8bc (diff) | |
Fixed #17806 -- Fixed off-by-n error in the CachedStaticFilesStorage that prevented it from finding files in nested directories. Many thanks to lpetre.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17622 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css')
| -rw-r--r-- | tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css index e64e7ccca7..54467a362d 100644 --- a/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css @@ -1 +1,4 @@ @import url("/static/cached/styles.css"); +body { + background: #d3d6d8 url(/static/cached/img/relative.png); +}
\ No newline at end of file |
