Removed unnecessary copy operation

This commit is contained in:
Andrew Murray 2016-12-29 10:23:43 +11:00
parent ce87310026
commit f28084ae3e

View File

@ -370,7 +370,7 @@ def _save(im, fp, filename, save_all=False):
first_frame = None
# delta frame
delta = ImageChops.subtract_modulo(im_frame, previous.copy())
delta = ImageChops.subtract_modulo(im_frame, previous)
bbox = delta.getbbox()
if bbox: