aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Werkzeug/py2/patches/02-fix-unicode.patch
blob: c78a6c3e714495298463c64d92f62f64a2a382d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- contrib/python/Werkzeug/py2/werkzeug/routing.py	(index)
+++ contrib/python/Werkzeug/py2/werkzeug/routing.py	(working tree)
@@ -2027,7 +2027,7 @@ class MapAdapter(object):
             (self.map.host_matching and host == self.server_name)
             or (not self.map.host_matching and domain_part == self.subdomain)
         ):
-            return "%s/%s" % (self.script_name.rstrip("/"), path.lstrip("/"))
+            return str("%s/%s" % (self.script_name.rstrip("/"), path.lstrip("/")))
         return str(
             "%s//%s%s/%s"
             % (