#12776: get_profile() may throw AttributeError instead of 
SiteProfileNotAvailable
----------------------------+-----------------------------------------------
 Reporter:  master          |       Owner:  nobody    
   Status:  new             |   Milestone:            
Component:  Authentication  |     Version:  1.1       
 Keywords:  profile         |       Stage:  Unreviewed
Has_patch:  1               |  
----------------------------+-----------------------------------------------
 I didn't find a case to fire:[[BR]]
 except (ImportError, ImproperlyConfigured)

 But some others cases :

 In AUTH_PROFILE_MODULE, if:

 - you don't provide a '.': 'accountsUserProfile'[[BR]]
 ==> ValueError

 - you mispell or forget the app_label part or the model_name part:
 'accounts.', 'accXXXounts.UserProfile'[[BR]]
 No exception is raised and the variable 'model' is returned as None.[[BR]]
 ==> AttributeError on following line: 'NoneType' object has no attribute
 '_default_manager'

 I needed something similar for my own code, that I wrote as:

 {{{
 try:
     ...
     model = ...
     if not model:
         raise SiteProfileNotAvailable
     ...
 except ValueError:
         raise SiteProfileNotAvailable
 }}}

-- 
Ticket URL: <http://code.djangoproject.com/ticket/12776>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to