roverdotcom / django-inlinecss

A Django app useful for inlining CSS (primarily for e-mails)
Other
160 stars 94 forks source link

Breaking locally on finders.find #29

Open macmichael01 opened 8 years ago

macmichael01 commented 8 years ago

This bit of code is breaking locally

        if settings.DEBUG:
            expanded_path = finders.find(path)
        else:
            expanded_path = staticfiles_storage.path(path)

This is returning an empty string.

expanded_path = finders.find(path)

When debug is set to False, it works.