Codebase list dnsviz / 99e9438
Fix quotes Casey Deccio 8 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
478478 if opts['-u'].startswith('https'):
479479 vers0, vers1, vers2 = sys.version_info[:3]
480480 if (2, 7, 9) > (vers0, vers1, vers2):
481 sys.stderr.write('''python version >= 2.7.9 is required to use a DNS looking glass with HTTPS.\n''')
481 sys.stderr.write('python version >= 2.7.9 is required to use a DNS looking glass with HTTPS.\n')
482482 sys.exit(1)
483483
484484 th_factories = (transport.DNSQueryTransportHandlerHTTPFactory(opts['-u'], insecure='-k' in opts),)