In article <mailman.15913.1416175276.18130.python-l...@python.org>, Chris Angelico <ros...@gmail.com> wrote:
> On Mon, Nov 17, 2014 at 8:32 AM, Abdul Abdul <abdul.s...@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 Not to mention the missing ":" at the end of the "for" statement. Please, people, when asking questions about code, copy-paste what you're running into your post. Then we see exactly what you've got, and at least have a chance of figuring out what's wrong. -- https://mail.python.org/mailman/listinfo/python-list