Re: [BangPypers] Django - Infinte Loop

2014-07-11 Thread Arun Ravindran
Hi, >From Django 1.7 onwards, the proper way to register signals will be inside a ready function in the app's configuration object. This is thanks to the App-loading refactor done in the release. In your case, a

Re: [BangPypers] Django - Infinte Loop

2014-07-11 Thread Anand Reddy Pandikunta
I have overrided model save. Moved couple of functions from models.py to tasks.py which lead to circular imports. Instead of importing models at the beginning of file, I've imported them in the functions. Thank you @krace, @navin, @pradip :) On Thu, Jul 10, 2014 at 11:12 AM, Pradip Caulagi wro