Removed unnecessary copy operation

This commit is contained in:
Andrew Murray 2016-12-29 10:23:43 +11:00
parent 2aef31be67
commit 5f3fcf105f

View File

@ -378,7 +378,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: