Re: create_inactive_user() got an unexpected keyword argument 'profile_callback' Error in django registration . What can be the error ?

2011-06-23 Thread Shawn Milochik
It looks like you added an extra kwarg named profile_callback to a function call to use in your overridden version, then passed *kwargs on to the original version. Before you call the super() version you have to pop off your kwarg because it is an invalid parameter for the original version.

create_inactive_user() got an unexpected keyword argument 'profile_callback' Error in django registration . What can be the error ?

2011-06-23 Thread Satyajit Sarangi
This is my stack trace . Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/ base.py" in get_response 111. response = callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python2.6/dist-packages/registration/views.py" in regi