##// END OF EJS Templates
Fix https availability checking...
Benoit Boissinot -
r7279:1f0f8466 default
parent child Browse files
Show More
@@ -215,7 +215,7 b' class httprepository(repo.repository):'
215 215
216 216 class httpsrepository(httprepository):
217 217 def __init__(self, ui, path):
218 if not has_https:
218 if not url.has_https:
219 219 raise util.Abort(_('Python support for SSL and HTTPS '
220 220 'is not installed'))
221 221 httprepository.__init__(self, ui, path)
General Comments 0
You need to be logged in to leave comments. Login now