summaryrefslogtreecommitdiff
path: root/www-misc/urlwatch/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-06-15 14:57:03 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-06-15 14:57:03 +0100
commitd18bf1e01b65ee4bf0c804e2843b282d3d4e5d7c (patch)
tree4a95cbc6ffdf13bad6ecbc7f8d5af99631984123 /www-misc/urlwatch/files
parente748ba9741f6540f4675c23e3e37b73e822c13a4 (diff)
gentoo resync : 15.06.2021
Diffstat (limited to 'www-misc/urlwatch/files')
-rw-r--r--www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch b/www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch
deleted file mode 100644
index c8bd04ae932f..000000000000
--- a/www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-commit d00041bacd6343cadf29c3d0a98817a7b9fda2a1
-Author: Louis Sautier <sautier.louis@gmail.com>
-Date: Sun Apr 14 14:49:24 2019 +0200
-
- Fix YAMLLoadWarning in tests
-
-diff --git a/test/test_filters.py b/test/test_filters.py
-index 3402616..da2393b 100644
---- a/test/test_filters.py
-+++ b/test/test_filters.py
-@@ -33,6 +33,6 @@ def test_filters():
- eq_(result, expected_result)
-
- with open(os.path.join(os.path.dirname(__file__), 'data/filter_tests.yaml'), 'r', encoding='utf8') as fp:
-- filter_tests = yaml.load(fp)
-+ filter_tests = yaml.load(fp, Loader=yaml.SafeLoader)
- for test_name in filter_tests:
- yield check_filter, test_name