What's the new "field" parameter in the ManyToOneRel __init__ function?

2013-09-06 Thread Mark Young
(I can't really decide if this should go here or in django-dev, since I'm asking how to use a private class. If it'd fit better elsewhere, just let me know please.) Hi, I'm working on updating an app (not written by me (django-blog-zannia, for the curious)) to python 3.3 and django 1.6 . I've g

Re: What's the new "field" parameter in the ManyToOneRel __init__ function?

2013-09-06 Thread Mark Young
For a little bit of context, here's an example of code that perviously worked but now doesn't: class CategoryAdminForm(forms.ModelForm): """Form for Category's Admin""" parent = TreeNodeChoiceField( label=_('Parent category'), level_indicator='|--', required=False, empty_label

Re: What's the new "field" parameter in the ManyToOneRel __init__ function?

2013-09-07 Thread Mark Young
Er, it's not part of the API. You know what I mean. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this gr

Re: What's the new "field" parameter in the ManyToOneRel __init__ function?

2013-09-07 Thread Mark Young
Thank you! That tentatively fixes the issue. Now I just need to talk to the original author and make the code not use this API at all... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fr