##// END OF EJS Templates
py3: return bytes from util.removeauth()...
Pulkit Goyal -
r37384:b23e3cc1 default
parent child Browse files
Show More
@@ -2864,7 +2864,7 b' def removeauth(u):'
2864 '''remove all authentication information from a url string'''
2864 '''remove all authentication information from a url string'''
2865 u = url(u)
2865 u = url(u)
2866 u.user = u.passwd = None
2866 u.user = u.passwd = None
2867 return str(u)
2867 return bytes(u)
2868
2868
2869 timecount = unitcountfn(
2869 timecount = unitcountfn(
2870 (1, 1e3, _('%.0f s')),
2870 (1, 1e3, _('%.0f s')),
General Comments 0
You need to be logged in to leave comments. Login now