Closed davea closed 11 years ago
Django 1.5 has started spitting out DeprecationWarnings (instead of PendingDeprecationWarning, used in 1.4) when accessing HttpRequest.raw_post_data.
I've patched the code to use the new-style HttpRequest.body attribute to stop the warning.
Is this compatible with 1.2 and 1.3?
Good point. Tests don't pass fully on 1.2/1.3 even on master, but this change doesn't cause any regressions in the tests.
Thanks! Mergerd!
Django 1.5 has started spitting out DeprecationWarnings (instead of PendingDeprecationWarning, used in 1.4) when accessing HttpRequest.raw_post_data.
I've patched the code to use the new-style HttpRequest.body attribute to stop the warning.