If you receive this when deploying django on apache, it’s because you have something like:
print "Something %s" % value
The fix is to change it to:
print "Something %s" % str(value)
If you receive this when deploying django on apache, it’s because you have something like:
print "Something %s" % value
The fix is to change it to:
print "Something %s" % str(value)
0 Responses to “unknown encoding: cp0”