[Answer]-Syntax error in wsgi.py in Apache log files

1👍

b strings were introduced between 2.4 and 2.7 (I don’t know the exact release).

To check your Python version:

>>> import sys
>>> sys.version
'2.4.4 (#1, Jul 12 2013, 10:47:50) \n[GCC 4.7.3]'

Log it, if you want it to be in your apache log files.

👤Paco

Leave a comment