Advertisement
Guest User

traceback

a guest
Nov 22nd, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.63 KB | None | 0 0
  1. Traceback (most recent call last):
  2.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 1248, in do_open
  3.     h.request(req.get_method(), req.selector, req.data, headers)
  4.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/http/client.py", line 1065, in request
  5.     self._send_request(method, url, body, headers)
  6.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/http/client.py", line 1103, in _send_request
  7.     self.endheaders(body)
  8.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/http/client.py", line 1061, in endheaders
  9.     self._send_output(message_body)
  10.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/http/client.py", line 906, in _send_output
  11.     self.send(msg)
  12.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/http/client.py", line 844, in send
  13.     self.connect()
  14.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/http/client.py", line 1206, in connect
  15.     server_hostname=server_hostname)
  16.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/ssl.py", line 245, in wrap_socket
  17.     _context=self)
  18.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/ssl.py", line 345, in __init__
  19.     raise x
  20.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/ssl.py", line 341, in __init__
  21.     self.do_handshake()
  22.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/ssl.py", line 548, in do_handshake
  23.     self._sslobj.do_handshake()
  24. ssl.SSLError: [SSL: TLSV1_UNRECOGNIZED_NAME] unknown error (_ssl.c:550)
  25.  
  26. During handling of the above exception, another exception occurred:
  27.  
  28. Traceback (most recent call last):
  29.   File "/Users/carlovespa/Documents/Assignments/Programming Fundamentals I/Project/downloadCal.py", line 32, in <module>
  30.     LoginICorsi(None)
  31.   File "/Users/carlovespa/Documents/Assignments/Programming Fundamentals I/Project/downloadCal.py", line 25, in LoginICorsi
  32.     usiLoginUrl = rqst.urlopen(usiLoginRequest, data=postDATA, cafile=None, capath=None, cadefault=False)
  33.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 156, in urlopen
  34.     return opener.open(url, data, timeout)
  35.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 475, in open
  36.     response = meth(req, response)
  37.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 587, in http_response
  38.     'http', request, response, code, msg, hdrs)
  39.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 507, in error
  40.     result = self._call_chain(*args)
  41.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 447, in _call_chain
  42.     result = func(*args)
  43.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 692, in http_error_302
  44.     return self.parent.open(new, timeout=req.timeout)
  45.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 475, in open
  46.     response = meth(req, response)
  47.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 587, in http_response
  48.     'http', request, response, code, msg, hdrs)
  49.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 507, in error
  50.     result = self._call_chain(*args)
  51.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 447, in _call_chain
  52.     result = func(*args)
  53.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 692, in http_error_302
  54.     return self.parent.open(new, timeout=req.timeout)
  55.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 469, in open
  56.     response = self._open(req, data)
  57.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 487, in _open
  58.     '_open', req)
  59.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 447, in _call_chain
  60.     result = func(*args)
  61.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 1283, in https_open
  62.     context=self._context, check_hostname=self._check_hostname)
  63.   File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/urllib/request.py", line 1251, in do_open
  64.     raise URLError(err)
  65. urllib.error.URLError: <urlopen error [SSL: TLSV1_UNRECOGNIZED_NAME] unknown error (_ssl.c:550)>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement