##// END OF EJS Templates
util: use pycompat urlunquote function
Augie Fackler -
r30328:2d996af0 default
parent child Browse files
Show More
@@ -2472,7 +2472,7 b' class url(object):'
2472 'path', 'fragment'):
2472 'path', 'fragment'):
2473 v = getattr(self, a)
2473 v = getattr(self, a)
2474 if v is not None:
2474 if v is not None:
2475 setattr(self, a, pycompat.urlparse.unquote(v))
2475 setattr(self, a, pycompat.urlunquote(v))
2476
2476
2477 def __repr__(self):
2477 def __repr__(self):
2478 attrs = []
2478 attrs = []
General Comments 0
You need to be logged in to leave comments. Login now