Skip to content

Commit 8059f5e

Browse files
committedJan 4, 2016
syntax fix
1 parent 4f01ad6 commit 8059f5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎nikola/plugins/task/galleries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def create_target_images(self, img, input_path):
476476
'targets': [thumb_path],
477477
'actions': [
478478
(self.resize_image,
479-
(img, thumb_path, self.kw['thumbnail_size'], preserve_exif_data=self.kw['preserve_exif_data']))
479+
(img, thumb_path, self.kw['thumbnail_size'], False, self.kw['preserve_exif_data']))
480480
],
481481
'clean': True,
482482
'uptodate': [utils.config_changed({
@@ -491,7 +491,7 @@ def create_target_images(self, img, input_path):
491491
'targets': [orig_dest_path],
492492
'actions': [
493493
(self.resize_image,
494-
(img, orig_dest_path, self.kw['max_image_size'], preserve_exif_data=self.kw['preserve_exif_data']))
494+
(img, orig_dest_path, self.kw['max_image_size'], False, self.kw['preserve_exif_data']))
495495
],
496496
'clean': True,
497497
'uptodate': [utils.config_changed({

0 commit comments

Comments
 (0)
Failed to load comments.