0👍
The cause of this was an issue in django-request which is used by Django-Mingus. During syncdb Django does some db introspection and a related import raised this exception. If you are to pull the latest bits from either django-request or django-mingus you’ll be ok.
- [Django]-Pass data from one view to another django
- [Django]-How to combine select_related() and value()?
- [Django]-Django API Framework – Nested Models View
- [Django]-Django – use same column for two foreign keys
- [Django]-How do I define default permissions for users in Django Guardian?
0👍
I was having the same issue and tracked it down to the commit at 2979ea3d4541f7b3c51c17e160bc95b468ac999b on django-mingus
If you reset back to commit 2f7eb8de7e2cb1c776e801a40f008048fcbb6d36, the sync should happen fine.
- [Django]-Django app with fcgi works only in non daemonized mode
- [Django]-Is it possible to include a custom 404 view for a Django app without changing anything at the project level?
- [Django]-'Cannot alter upload handlers' while trying to upload file
0👍
mySQL does not invalidate the current transaction when it encounters an error where postgres throws the error and do not run other query until the current transaction is not aborted. In this case you have to kill the transaction or commit with that transaction id
- [Django]-Setting up Django website on a shared hosting
- [Django]-What would be the best way to track Github account activity via their API?
- [Django]-Django admin datetime widget (calendar) in a custom form
- [Django]-Is it possible to use query parameters on the Django Admin Site
- [Django]-Why is django.test.client.Client not keeping me logged in