mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	Removed logger exception
This commit is contained in:
		
							parent
							
								
									26b66b8038
								
							
						
					
					
						commit
						9014517602
					
				| 
						 | 
					@ -30,13 +30,10 @@
 | 
				
			||||||
from PIL import Image
 | 
					from PIL import Image
 | 
				
			||||||
from PIL._util import isPath
 | 
					from PIL._util import isPath
 | 
				
			||||||
import io
 | 
					import io
 | 
				
			||||||
import logging
 | 
					 | 
				
			||||||
import os
 | 
					import os
 | 
				
			||||||
import sys
 | 
					import sys
 | 
				
			||||||
import struct
 | 
					import struct
 | 
				
			||||||
 | 
					
 | 
				
			||||||
logger = logging.getLogger(__name__)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
MAXBLOCK = 65536
 | 
					MAXBLOCK = 65536
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SAFEBLOCK = 1024*1024
 | 
					SAFEBLOCK = 1024*1024
 | 
				
			||||||
| 
						 | 
					@ -103,7 +100,6 @@ class ImageFile(Image.Image):
 | 
				
			||||||
                KeyError,  # unsupported mode
 | 
					                KeyError,  # unsupported mode
 | 
				
			||||||
                EOFError,  # got header but not the first frame
 | 
					                EOFError,  # got header but not the first frame
 | 
				
			||||||
                struct.error) as v:
 | 
					                struct.error) as v:
 | 
				
			||||||
            logger.exception("%s")
 | 
					 | 
				
			||||||
            raise SyntaxError(v)
 | 
					            raise SyntaxError(v)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if not self.mode or self.size[0] <= 0:
 | 
					        if not self.mode or self.size[0] <= 0:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user