Created: Nov 12, 2016
Usually doing a clean on the pyc files solves this issue:
find . -name "*.pyc" -exec rm -f {} \;
The command above will delete all pyc files recursively.