How to fix those errors?

Chris Angelico rosuav at gmail.com
Sun Nov 16 17:01:12 EST 2014


On Mon, Nov 17, 2014 at 8:32 AM, Abdul Abdul <abdul.sw84 at gmail.com> wrote:
> from PIL import Image
> import os
>
>     for inputfile in filelist
>     outputfile = os.path.splitext(inputfile)[0]+".jpg"
>     if inputfile != outputfile:
>         try:
>             Image.open(inputfile).save(outputfile)
>             except IOError:
>             print "unable to convert ", inputfile

The first issue I'm seeing here is that your indentation is messed up.
I've no idea where your example is coming from, but somewhere between
working code and what I'm seeing in front of me, some lines have
become indented further than they should.

You'll also need to figure out what the list of files should be.
That's why you're seeing errors about 'filelist'.

ChrisA



More information about the Python-list mailing list