This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author acooke
Recipients acooke, barry, brett.cannon, christian.heimes
Date 2013-07-10.23:05:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373497545.84.0.133403609408.issue18422@psf.upfronthosting.co.za>
In-reply-to
Content
in case anyone else ends up here through google...

the problem described here is not related to the linked issue.  it was just a missing `__init__.py` in the module (plus sucky error messages).

the following works fine:

.
├── README.md
├── src
│   └── simplessl                                                               
│       ├── ca.py                                                               
│       ├── __init__.py                                                         
│       ├── __main__.py                                                         
│       ├── req.py                                                              
│       └── utils.py                                                            
└── ssl.iml
History
Date User Action Args
2013-07-10 23:05:45acookesetrecipients: + acooke, barry, brett.cannon, christian.heimes
2013-07-10 23:05:45acookesetmessageid: <1373497545.84.0.133403609408.issue18422@psf.upfronthosting.co.za>
2013-07-10 23:05:45acookelinkissue18422 messages
2013-07-10 23:05:45acookecreate