I couldn\'t find this exitcode anywhere but hopefully one of you could help me or let me know if this is a bug in python/Django.
Anyway, first here\'s the stacktrace
I tried this
new_environ['PATH'] = os.path.abspath(new_environ['PATH'].replace('\u202a', ''))
but it did not work.
And my solution is
new_environ['PATH'] = os.path.abspath(new_environ['PATH'].encode('ascii', 'replace'))
Hope it will help you!