I installed the registration module, added it to settings.py. When I tried to run syncdb (% python sitename/manage.py syncdb --settings sitename.devsettings)
It gav
I was simply missing a comma after the 'registration' entry in the settings.py file. Once I added the comma after 'registration', Syncdb worked for me.
Just try this
1) Put down the registration app inside your project as an app
and do the syncdb
do the below for finding out the exact cause of error
1.go to you project directory
2.python manage.py dbshell
3.in shell
4.import registration
5.if you get error here which means your registration module is not
there on the python path (or) some problem in finding that one.
if it works then some other problem like improper compilation .............
There may be Python errors in your registration
models. Try starting a shell and importing them, instantiating them, etc.