##// END OF EJS Templates
url: ignore some future pytype error...
marmoute -
r51819:bc9c9ed0 default
parent child Browse files
Show More
@@ -541,7 +541,10 b' def opener('
541 else:
541 else:
542 handlers.append(httphandler(timeout=timeout))
542 handlers.append(httphandler(timeout=timeout))
543 if has_https:
543 if has_https:
544 handlers.append(httpshandler(ui, timeout=timeout))
544 # pytype get confused about the conditional existence for httpshandler here.
545 handlers.append(
546 httpshandler(ui, timeout=timeout) # pytype: disable=name-error
547 )
545
548
546 handlers.append(proxyhandler(ui))
549 handlers.append(proxyhandler(ui))
547
550
General Comments 0
You need to be logged in to leave comments. Login now