maxi_dev

Results 3 comments of maxi_dev

The Response class is written even in the old werzeug versions, but in the version 1.x and older, there's not the `autocorrect_location_header` which is modified in httpbin, so there will...

So we can maybe try something like this : ```python try: from werkzeug.wrappers import Response from werkzeug.wrappers import BaseResponse except ImportError: # werkzeug >= 2.1.0 from werkzeug.wrappers import Response ....

You're right, I updated it !