From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- .../files/pastedeploy-1.5.2-py3-tests.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch (limited to 'dev-python/pastedeploy/files') diff --git a/dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch b/dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch new file mode 100644 index 000000000000..0839406813b6 --- /dev/null +++ b/dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch @@ -0,0 +1,19 @@ +# HG changeset patch +# User aodag +# Date 1457425517 -32400 +# Node ID 6aeb907ef222ed071b149f8b07b14f0a61e45dbe +# Parent 0c2ea2f675bc77f2ee2a889c0e83d61d026fbc7b +use explicit bytes literal + +diff --git a/tests/test_config_middleware.py b/tests/test_config_middleware.py +--- a/tests/test_config_middleware.py ++++ b/tests/test_config_middleware.py +@@ -10,7 +10,7 @@ + + def app_with_exception(environ, start_response): + def cont(): +- yield "something" ++ yield b"something" + raise Bug + start_response('200 OK', [('Content-type', 'text/html')]) + return cont() -- cgit v1.2.3