We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08edac commit 41fa197Copy full SHA for 41fa197
imagekit/files.py
@@ -107,7 +107,7 @@ def invalidate(self):
107
def validate(self):
108
return self.spec.image_cache_backend.validate(self)
109
110
- def generate(self, save=True):
+ def generate(self):
111
if self.source_file: # TODO: Should we error here or something if the source_file doesn't exist?
112
# Process the original image file.
113
content = self.spec.apply(self.source_file)
imagekit/imagecache/backends.py
@@ -67,7 +67,7 @@ def _validate(self, file):
67
Generates a new image by running the processors on the source file.
68
69
"""
70
- file.generate(save=True)
+ file.generate()
71
72
def invalidate(self, file):
73
0 commit comments