git: 9front

Download patch

ref: 8100f2519b402582401d128c543e85c6008caff6
parent: 0a85bd0b530c6d62d502c7100659560712d00119
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Apr 10 16:18:21 EDT 2016

hg: set mercurial.url.has_https when hgwebfs extension is in use

this allows the use of SSL/HTTPS even when python is not build
with openssl support.

--- a/sys/lib/python/hgext/hgwebfs.py
+++ b/sys/lib/python/hgext/hgwebfs.py
@@ -81,4 +81,5 @@
 def webopener(ui, authinfo=None):
 	return Webopener();
 
+mercurial.url.has_https = 1
 mercurial.url.opener = webopener
--