Hi All,
1. Unexpected keyword argument 'validator_list'
When trying to run an Ella pased project (stdout) I got the following error:
"""
File "C:\ws\Ella\pylib\ella\tagging\models.py", line 562, in Tag
name = models.CharField(_('name'), max_length=50, unique=True, db_index=True, validator_list=[isTag])
TypeError: __init__() got an unexpected keyword argument 'validator_list'
"""
It seems that the
validator_list is pushed to post-1.0. My current Django ver is 1.0.
Removing the 'validator_list' from the function pass the 'manage.py vlidate' process.
Is it OK?
2. AttributeError: 'module' object has no attribute 'connect'
When invoking: manage.py syncdb (assuming that the solution above is OK), I got:
"""
File "c:\ws\Ella\pylib\ella\ellaadmin\management.py", line 28, in <module>
dispatcher.connect(create_permissions, signal=signals.post_syncdb)
AttributeError: 'module' object has no attribute 'connect'
"""
Is it 1.0 integration problem?
Thanks,
Ahik