##// END OF EJS Templates
merge
Marcin Kasperski -
r79:04f41283 merge default
parent child Browse files
Show More
@@ -1,6 +1,7 b''
1 syntax: regexp
1 syntax: regexp
2
2
3 \.pyc$
3 \.pyc$
4 \.pyo$
4 ~$
5 ~$
5 ^\.\#
6 ^\.\#
6 ^\.(project|pydevproject)$
7 ^\.(project|pydevproject)$
@@ -241,7 +241,10 b' class HTTPPasswordHandler(object):'
241 except ImportError:
241 except ImportError:
242 # hg 1.9
242 # hg 1.9
243 from mercurial.httpconnection import readauthforuri
243 from mercurial.httpconnection import readauthforuri
244 res = readauthforuri(local_ui, base_url)
244 try:
245 res = readauthforuri(local_ui, base_url)
246 except:
247 res = readauthforuri(local_ui, base_url, '')
245 if res:
248 if res:
246 group, auth_token = res
249 group, auth_token = res
247 else:
250 else:
General Comments 0
You need to be logged in to leave comments. Login now