Skip to content

Commit

Permalink
Fix django-pipeline empty static assets bug
Browse files Browse the repository at this point in the history
  • Loading branch information
imkevinxu committed May 18, 2015
1 parent 0bcd66d commit a44d3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project_name/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@

# https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#staticfiles-finders
STATICFILES_FINDERS = (
'config.lib.finders.FileSystemFinderIgnore',
'config.lib.finders.AppDirectoriesFinderIgnore',
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'pipeline.finders.PipelineFinder',
'pipeline.finders.CachedFileFinder',
)
Expand Down

0 comments on commit a44d3c9

Please sign in to comment.