diff --git a/MDmisc/imageprocessing.py b/MDmisc/imageprocessing.py index cf1707fe8a74edd4e2d09b036de1efa4f0c06023..97bddf90470e5534a2df98053c93a80b2f6fb3d0 100644 --- a/MDmisc/imageprocessing.py +++ b/MDmisc/imageprocessing.py @@ -14,7 +14,7 @@ def RAWToPIL( raw, size = ( 500, 500 ), res = None ): Convert a RAW string to PIL object. If the resolution is passed in argument, the PIL object resolution is set. - >>> RAWToPIL( chr( 255 ) * 250000, ( 500, 500 ) ) #doctest: +ELLIPSIS + >>> RAWToPIL( chr( 255 ) * 250000, ( 500, 500 ) ) # doctest: +ELLIPSIS """ img = Image.frombytes( 'L', size, raw )