##// END OF EJS Templates
util: use urlreq.unquote...
Gregory Szorc -
r31567:4ebecf33 default
parent child Browse files
Show More
@@ -2637,7 +2637,7 b' class url(object):'
2637 'path', 'fragment'):
2637 'path', 'fragment'):
2638 v = getattr(self, a)
2638 v = getattr(self, a)
2639 if v is not None:
2639 if v is not None:
2640 setattr(self, a, pycompat.urlunquote(v))
2640 setattr(self, a, urlreq.unquote(v))
2641
2641
2642 def __repr__(self):
2642 def __repr__(self):
2643 attrs = []
2643 attrs = []
General Comments 0
You need to be logged in to leave comments. Login now