##// END OF EJS Templates
py3: fix keyword arguments handling in hgext/acl.py...
Pulkit Goyal -
r36395:39212037 default
parent child Browse files
Show More
@@ -335,8 +335,8 b' def hook(ui, repo, hooktype, node=None, '
335 return
335 return
336
336
337 user = None
337 user = None
338 if source == 'serve' and 'url' in kwargs:
338 if source == 'serve' and r'url' in kwargs:
339 url = kwargs['url'].split(':')
339 url = kwargs[r'url'].split(':')
340 if url[0] == 'remote' and url[1].startswith('http'):
340 if url[0] == 'remote' and url[1].startswith('http'):
341 user = urlreq.unquote(url[3])
341 user = urlreq.unquote(url[3])
342
342
General Comments 0
You need to be logged in to leave comments. Login now