##// END OF EJS Templates
sslutil: use absolute_import
Gregory Szorc -
r25977:696f6e2b default
parent child Browse files
Show More
@@ -6,10 +6,15 b''
6 #
6 #
7 # This software may be used and distributed according to the terms of the
7 # This software may be used and distributed according to the terms of the
8 # GNU General Public License version 2 or any later version.
8 # GNU General Public License version 2 or any later version.
9 import os, sys, ssl
9
10 from __future__ import absolute_import
10
11
11 from mercurial import util
12 import os
12 from mercurial.i18n import _
13 import ssl
14 import sys
15
16 from .i18n import _
17 from . import util
13
18
14 _canloaddefaultcerts = False
19 _canloaddefaultcerts = False
15 try:
20 try:
General Comments 0
You need to be logged in to leave comments. Login now