Django 1.9 deprecation warnings app_label

后端 未结 12 740
花落未央
花落未央 2020-12-01 05:09

I\'ve just updated to Django v1.8, and testing my local setup before updating my project and I\'ve had a deprecation warning that I\'ve never seen before, nor does it make a

12条回答
  •  一个人的身影
    2020-12-01 05:20

    Sometimes an invalid .pyc files that doesnt match with the current source code caused this problem.

    I removed all .pyc to refresh all of them using this bash

    find . -name "*.pyc" -exec rm -rf {} \;

提交回复
热议问题