##// END OF EJS Templates
test-url: skip test when ssl module is unavailable
Augie Fackler -
r12737:7adb1274 stable
parent child Browse files
Show More
@@ -1,4 +1,9 b''
1 1 #!/usr/bin/env python
2 import sys
3 try:
4 import ssl
5 except ImportError:
6 sys.exit(80)
2 7
3 8 def check(a, b):
4 9 if a != b:
General Comments 0
You need to be logged in to leave comments. Login now