diff --git a/common/lib/xmodule/xmodule/open_ended_image_submission.py b/common/lib/xmodule/xmodule/open_ended_image_submission.py index 62e9a0d6d492a1da7670a35883742c95b50da236..6e5220c9f616230d5e3ed6f59ea0d6d190b19b22 100644 --- a/common/lib/xmodule/xmodule/open_ended_image_submission.py +++ b/common/lib/xmodule/xmodule/open_ended_image_submission.py @@ -83,7 +83,8 @@ class ImageProperties(object): Does all available checks on an image to ensure that it is okay (size, skin ratio, colors) @return: Boolean indicating whether or not image passes all checks """ - image_is_okay = self.count_colors() and self.get_skin_ratio() and not self.image_too_large + #image_is_okay = self.count_colors() and self.get_skin_ratio() and not self.image_too_large + image_is_okay = self.count_colors() and not self.image_too_large log.debug("Image too large: {0}".format(self.image_too_large)) log.debug("Image Okay: {0}".format(image_is_okay)) return image_is_okay