From 5f2ee7a75d41d14dfef3d637e60c00774945f7bd Mon Sep 17 00:00:00 2001 From: skidzo Date: Tue, 25 Aug 2015 16:13:05 +0200 Subject: [PATCH] typos in ImageFilter.py added the Import of core to this module. did not find any other way to implement this! --- PIL/ImageFilter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PIL/ImageFilter.py b/PIL/ImageFilter.py index 9a788a5f4..da7ecf314 100644 --- a/PIL/ImageFilter.py +++ b/PIL/ImageFilter.py @@ -184,10 +184,10 @@ class UnsharpMask(Filter): class Sobel(Filter): """ - Using the Scobeloperator to integrate perpendicular towards the direction of the derivative. + Using the Sobeloperator to integrate perpendicular towards the direction of the derivative. This is good for getting rid of disturbances. """ - name = "Scobel" + name = "Sobel" def __init__(self, size=3): self.size = size