I'm doing the .96 tutorial because my company is using version 96.1
for now.

The tutorial has:

class Poll(models.Model):
    question = models.CharField(maxlength=200)
    pub_date = models.DateTimeField('date published')

class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(max_length=200)
    votes = models.IntegerField()


When I run:

python manage.py sql polls

or

python manage.py syncdb

I get:

TypeError: __init__() got an unexpected keyword argument 'maxlength'

Upon investigation, I find that maxlength was changed to max_length in
later django versions. I tried changing the code to use max_length,
and that fixed it.

All would be well and good, except that I'm running Django version
96.1, and the notes I'm finding online say that that version uses
maxlength, as specified in the .96 tutorial -- for instance
http://groups.google.com/group/django-users/browse_thread/thread/d838147cc8bda92f/cba5427c5eb10f91?lnk=gst&q=maxlength+max_length+tutorial+#cba5427c5eb10f91
says that.

I have confirmed that I am running 96.1 by printing django.VERSION
both from python run at the command line, and by actually printing it
directly in the models.py where the polls classes are defined. (To be
precise, it says version 96.099999999999994.)

So, I am pretty confused about this.

Thanks in advance for any help.

Gary


--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to