]> git.pld-linux.org Git - packages/python3-werkzeug.git/blobdiff - python-werkzeug-py3.patch
- updated to 0.12.1
[packages/python3-werkzeug.git] / python-werkzeug-py3.patch
diff --git a/python-werkzeug-py3.patch b/python-werkzeug-py3.patch
deleted file mode 100644 (file)
index bf34613..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---- Werkzeug-0.11.15/werkzeug/contrib/lint.py.orig     2016-12-30 23:48:20.000000000 +0100
-+++ Werkzeug-0.11.15/werkzeug/contrib/lint.py  2017-03-06 15:38:39.361757764 +0100
-@@ -19,7 +19,12 @@
-     :copyright: (c) 2014 by the Werkzeug Team, see AUTHORS for more details.
-     :license: BSD, see LICENSE for more details.
- """
--from urlparse import urlparse
-+try:
-+    from urlparse import urlparse
-+except:
-+    # py3
-+    from urllib.parse import urlparse
-+
- from warnings import warn
- from werkzeug.datastructures import Headers
This page took 0.103162 seconds and 4 git commands to generate.