Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.85 KB | None | 0 0
  1. Traceback (most recent call last):
  2.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/connector.py", line 601, in _create_direct_connection
  3.     local_addr=self._local_addr)
  4.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/base_events.py", line 643, in create_connection
  5.     sock, protocol_factory, ssl, server_hostname)
  6.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/base_events.py", line 666, in _create_connection_transport
  7.     yield from waiter
  8.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/futures.py", line 386, in __iter__
  9.     yield self  # This tells Task to wait for completion.
  10.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/tasks.py", line 287, in _wakeup
  11.     value = future.result()
  12.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/futures.py", line 275, in result
  13.     raise self._exception
  14.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/selector_events.py", line 802, in _on_handshake
  15.     self._sock.do_handshake()
  16.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/ssl.py", line 810, in do_handshake
  17.     self._sslobj.do_handshake()
  18. ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:600)
  19.  
  20. The above exception was the direct cause of the following exception:
  21.  
  22. Traceback (most recent call last):
  23.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/connector.py", line 304, in connect
  24.     yield from self._create_connection(req)
  25.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/connector.py", line 578, in _create_connection
  26.     transport, proto = yield from self._create_direct_connection(req)
  27.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/connector.py", line 624, in _create_direct_connection
  28.     (req.host, req.port, exc.strerror)) from exc
  29. aiohttp.errors.ClientOSError: [Errno 1] Can not connect to discordapp.com:443 [[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:600)]
  30.  
  31. The above exception was the direct cause of the following exception:
  32.  
  33. Traceback (most recent call last):
  34.   File "bot.py", line 24, in <module>
  35.     client.run("NDE0NTA0MjQxMzcwMjM0ODgw.DWoZLg.hNpPWGAMUWOt6hq1yNOC_uPxruA")
  36.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/discord/client.py", line 519, in run
  37.     self.loop.run_until_complete(self.start(*args, **kwargs))
  38.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/base_events.py", line 316, in run_until_complete
  39.     return future.result()
  40.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/futures.py", line 275, in result
  41.     raise self._exception
  42.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/asyncio/tasks.py", line 234, in _step
  43.     result = coro.throw(exc)
  44.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/discord/client.py", line 490, in start
  45.     yield from self.login(*args, **kwargs)
  46.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/discord/client.py", line 416, in login
  47.     yield from getattr(self, '_login_' + str(n))(*args, **kwargs)
  48.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/discord/client.py", line 346, in _login_1
  49.     data = yield from self.http.static_login(token, bot=is_bot)
  50.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/discord/http.py", line 258, in static_login
  51.     data = yield from self.request(Route('GET', '/users/@me'))
  52.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/discord/http.py", line 137, in request
  53.     r = yield from self.session.request(method, url, **kwargs)
  54.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/client.py", line 555, in __iter__
  55.     resp = yield from self._coro
  56.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/client.py", line 198, in _request
  57.     conn = yield from self._connector.connect(req)
  58.   File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/aiohttp/connector.py", line 314, in connect
  59.     .format(key, exc.strerror)) from exc
  60. aiohttp.errors.ClientOSError: [Errno 1] Cannot connect to host discordapp.com:443 ssl:True [Can not connect to discordapp.com:443 [[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:600)]]
  61. Unclosed client session
  62. client_session: <aiohttp.client.ClientSession object at 0x31389ac>
  63. Unclosed client session
  64. client_session: <aiohttp.client.ClientSession object at 0x3138e8c>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement