Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Jan 4, 2016
1 parent 4f01ad6 commit 8059f5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nikola/plugins/task/galleries.py
Expand Up @@ -476,7 +476,7 @@ def create_target_images(self, img, input_path):
'targets': [thumb_path],
'actions': [
(self.resize_image,
(img, thumb_path, self.kw['thumbnail_size'], preserve_exif_data=self.kw['preserve_exif_data']))
(img, thumb_path, self.kw['thumbnail_size'], False, self.kw['preserve_exif_data']))
],
'clean': True,
'uptodate': [utils.config_changed({
Expand All @@ -491,7 +491,7 @@ def create_target_images(self, img, input_path):
'targets': [orig_dest_path],
'actions': [
(self.resize_image,
(img, orig_dest_path, self.kw['max_image_size'], preserve_exif_data=self.kw['preserve_exif_data']))
(img, orig_dest_path, self.kw['max_image_size'], False, self.kw['preserve_exif_data']))
],
'clean': True,
'uptodate': [utils.config_changed({
Expand Down

0 comments on commit 8059f5e

Please sign in to comment.