On Dec 15, 2007 9:35 AM, shabda <[EMAIL PROTECTED]> wrote:
> Should not the object returned by .get() have
> a .values method?

No, because -- as the documentation clearly states -- get() returns a
single model object. Only methods which return a QuerySet will have a
values() method, because values() only works as a method of a
QuerySet. You could put the call to values() before the call to get(),
however (so that valus() returns a ValuesQuerySet and then you call
get() on that), and it should work.


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

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

Reply via email to