IQAndreas / github-issues-import

Python script to import issues from one repository into another, either one at a time or all of them at once.
http://www.iqandreas.com/github-issues-import/
MIT License
423 stars 174 forks source link

Add an option to disable SSL verification. #47

Open pedramamini opened 9 years ago

pedramamini commented 9 years ago

To support Github Enterprise installs with self-signed certificates. It's a simple monkey-patch:

import ssl
ssl._create_default_https_context = ssl._create_unverified_context
jdmallen commented 8 years ago

I've tested this on our Enterprise edition of GH (2.2.0) and this did indeed fix my SSL issues. Please add this!

image

conschneider commented 6 years ago

That just saved my morning as well. Thanks a lot!