netdata: update to version 1.33.1
[feed/packages.git] / admin / netdata / patches / 005-patch-collectors_python.d.plugin_python__modules_bases_loaders.py.patch
diff --git a/admin/netdata/patches/005-patch-collectors_python.d.plugin_python__modules_bases_loaders.py.patch b/admin/netdata/patches/005-patch-collectors_python.d.plugin_python__modules_bases_loaders.py.patch
deleted file mode 100644 (file)
index 6a686df..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/collectors/python.d.plugin/python_modules/bases/loaders.py
-+++ b/collectors/python.d.plugin/python_modules/bases/loaders.py
-@@ -10,9 +10,9 @@ PY_VERSION = version_info[:2]
- try:
-     if PY_VERSION > (3, 1):
--        from pyyaml3 import SafeLoader as YamlSafeLoader
-+        from yaml import SafeLoader as YamlSafeLoader
-     else:
--        from pyyaml2 import SafeLoader as YamlSafeLoader
-+        from yaml import SafeLoader as YamlSafeLoader
- except ImportError:
-     from yaml import SafeLoader as YamlSafeLoader