Problems with South/Django: not recognizing the Django App

Posted by christmasgorilla on Stack Overflow See other posts from Stack Overflow or by christmasgorilla
Published on 2010-04-19T02:42:44Z Indexed on 2010/04/19 2:53 UTC
Read the original article Hit count: 416

Filed under:
|
|
|
|

I've got a Django project on my machine and when I try to use South to migrate the data schema, I get several odd errors. Example:

$ python manage.py convert_to_south thisLocator

/Library/Python/2.6/site-packages/registration/models.py:4: DeprecationWarning: the sha >module is deprecated; use the hashlib module instead import sha /Users/cm/code/thisLocator/../thisLocator/batches/models.py:6: DeprecationWarning: the md5 >module is deprecated; use hashlib instead import md5

There is no enabled application matching 'thisLocator'.

I've followed the South documentation. Settings.py has it in the installed apps, I can run import south from the manage.py shell. Everyone else on my team is calling the app thisLocator.

Am I doing something really stupid?

© Stack Overflow or respective owner

Related posts about python

Related posts about osx