SSL Error occurs on one computer but not the other?
I can't figure out why all of a sudden the below code that uses Asana's API generates the below SSL error. Something must have changed on my laptop, since it runs perfectly on my other computer. from asana import asana class Login(object): def __init__(self): api = 'API' self.asana_api = asana.AsanaAPI(api, debug=False) self.user_id = 7359085011308L class Test(Login): def Test(self): Id = 2467584555313L print self.asana_api.list_tasks(Id,self.user_id) Traceback (most recent call last): File "/Users/Chris/Dropbox/AsanaPullPush.py", line 75, in <module> if __name__ == "__main__": main() File "