Closed jelko closed 11 years ago
If an AJAXError is raised, I get another error which belongs to the message encoding inside of AJAXError.
'exceptions.ImportError' object has no attribute 'decode'
You can fix it by removing decode() in this line. Don't know if this would have any other implications, yet, though.
decode()
'message': smart_str(self.msg.decode())
There's a PR outstanding that will fix this when I merge it in.
Fixed by https://github.com/joestump/django-ajax/pull/40
If an AJAXError is raised, I get another error which belongs to the message encoding inside of AJAXError.
'exceptions.ImportError' object has no attribute 'decode'
You can fix it by removing
decode()
in this line. Don't know if this would have any other implications, yet, though.