Skip to content

Commit

Permalink
Merge pull request #438 from rspeed/fix-settings-list
Browse files Browse the repository at this point in the history
Fix for type mismatch between THUMBNAIL_PROCESSORS and THUMBNAIL_SOURCE_GENERATORS
  • Loading branch information
SmileyChris committed Jan 26, 2017
2 parents 430459d + 2e6381f commit 0091269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easy_thumbnails/utils.py
Expand Up @@ -49,8 +49,8 @@ def valid_processor_options(processors=None):
if processors is None:
processors = [
dynamic_import(p) for p in
settings.THUMBNAIL_PROCESSORS +
settings.THUMBNAIL_SOURCE_GENERATORS]
tuple(settings.THUMBNAIL_PROCESSORS) +
tuple(settings.THUMBNAIL_SOURCE_GENERATORS)]
valid_options = set(['size', 'quality', 'subsampling'])
for processor in processors:
args = inspect.getargspec(processor)[0]
Expand Down

0 comments on commit 0091269

Please sign in to comment.