summaryrefslogtreecommitdiff
path: root/dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch')
-rw-r--r--dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch19
1 files changed, 0 insertions, 19 deletions
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
deleted file mode 100644
index 0839406813b6..000000000000
--- a/dev-python/pastedeploy/files/pastedeploy-1.5.2-py3-tests.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-# HG changeset patch
-# User aodag <aodagx@gmail.com>
-# 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()