aamalig / django-profile

Automatically exported from code.google.com/p/django-profile
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

userprofile model image load #73

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
well i dont know is it about windows or not but 
userprofile's models.py file was trying to 

import Image, ImageFilter

it didnt work on me. it should be 

from PIL import Image, ImageFilter

have some other problems about avatar but im going to disable avatar and
googlemap so didnt look for the problem. ty for your app. its very good.
good luck

Original issue reported on code.google.com by ceyhunal...@gmail.com on 14 Nov 2009 at 1:40

GoogleCodeExporter commented 8 years ago
Actually it does

try:
    from PIL import Image, ImageFilter
except ImportError:
    import Image, ImageFilter

(since r350)

Original comment by stephane.angel on 2 Feb 2010 at 5:15

GoogleCodeExporter commented 8 years ago

Original comment by stephane.angel on 26 Apr 2010 at 4:20