about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/calibre-web/static_environ.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/calibre-web/static_environ.patch')
-rw-r--r--nixpkgs/pkgs/servers/calibre-web/static_environ.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/nixpkgs/pkgs/servers/calibre-web/static_environ.patch b/nixpkgs/pkgs/servers/calibre-web/static_environ.patch
deleted file mode 100644
index 4f94283a4e66..000000000000
--- a/nixpkgs/pkgs/servers/calibre-web/static_environ.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/cps/tornado_wsgi.py b/cps/tornado_wsgi.py
-index af93219c..cf302042 100644
---- a/cps/tornado_wsgi.py
-+++ b/cps/tornado_wsgi.py
-@@ -53,7 +53,7 @@ class MyWSGIContainer(WSGIContainer):
-             return response.append
- 
-         app_response = self.wsgi_application(
--            MyWSGIContainer.environ(request), start_response
-+            self.environ(request), start_response
-         )
-         try:
-             response.extend(app_response)
-@@ -86,9 +86,8 @@ class MyWSGIContainer(WSGIContainer):
-         request.connection.finish()
-         self._log(status_code, request)
- 
--    @staticmethod
--    def environ(request: httputil.HTTPServerRequest) -> Dict[Text, Any]:
--        environ = WSGIContainer.environ(request)
-+    def environ(self, request: httputil.HTTPServerRequest) -> Dict[Text, Any]:
-+        environ = super().environ(request)
-         environ['RAW_URI'] = request.path
-         return environ
-