Biblioteca de imagens do Python: AttributeError: o objeto 'NoneType' não tem atributo XXX

Eu abri uma foto com PIL, mas quando tentei usarsplit() para dividir os canais eu tenho seguinte erro:AttributeError: 'NoneType' object has no attribute 'bands'

import Image
img = Image.open('IMG_0007.jpg')

img.split()
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)

/home/blum/<ipython console> in <module>()

/usr/lib/python2.6/dist-packages/PIL/Image.pyc in split(self)
   1495         "Split image into bands"
   1496 
-> 1497         if self.im.bands == 1:
   1498             ims = [self.copy()]
   1499         else:

AttributeError: 'NoneType' object has no attribute 'bands'

questionAnswers(2)

yourAnswerToTheQuestion