no output
themaddoctor opened this issue · 1 comments
themaddoctor commented
With python 2.7, qrandom on the command line is giving me no output. For example,
$ qrandom --hex
$
I have all of the dependencies for the command-line script, since all but urllib come with the python standard library.
themaddoctor commented
The problem is that python now checks certificates for https by default. fixed with
import ssl
ssl._https_verify_certificates(enable=False)