ProgrammingError(1110, "Column 'about' specified twice"
/usr/local/lib/python2.5/site-packages/MySQLdb/connections.py
errorclass
<class '_mysql_exceptions.ProgrammingError'>
errorvalue
ProgrammingError(1110, "Column 'about' specified twice")
This error seems to be happening here in django_authopenid/views.py:
if 'bnewaccount' in request.POST.keys():
form1 = OpenidRegisterForm(request.POST)
if form1.is_valid():
next = clean_next(form1.cleaned_data.get('next'))
is_redirect = True
tmp_pwd = User.objects.make_random_password()
user_ = User.objects.create_user(form1.cleaned_data['username'],
form1.cleaned_data['email'], tmp_pwd) ### this is the last evaluated line in my code
# make association with openid
uassoc = UserAssociation(openid_url=str(openid_),
user_id=user_.id)
uassoc.save()