From 6e09e04f657b80ab5cd5490e6c171a552a099e37 Mon Sep 17 00:00:00 2001 From: Marco De Donno Date: Fri, 9 Dec 2016 18:19:23 +0100 Subject: [PATCH] Doc update --- MDmisc/imageprocessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MDmisc/imageprocessing.py b/MDmisc/imageprocessing.py index cf1707f..97bddf9 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 ) -- GitLab