}

SOLVED: ImportError: bad magic number in : b'\x03\xf3\r\n'

Created:

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.