django signals post save not working

Solutions on MaxInterview for django signals post save not working by the best coders in the world

showing results for - "django signals post save not working"
Tommaso
13 Jun 2019
1save() in post save keep calling itself(recursive)
2to solve this try:
3Just use pre_save , you don't need to use .save() method inside it again.