-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash after start #473
Labels
Comments
Not sure what could be causing this. |
How could I further debug this? The asynchronous nature makes it a bit
hard to follow the program.
|
You could try attaching the debugger and figure out what the incorrect argument to |
Thanks.
```
import asyncio
import hangups
from pathlib import Path
cookies = hangups.auth.get_auth_stdin(str(Path.home()) + "/.cache/hangups/refresh_token.txt")
client = hangups.Client(cookies)
loop = asyncio.get_event_loop()
task = loop.create_task(client.connect())
loop.run_until_complete(task)
```
is already enough to trigger the problem.
The host argument to getaddrinfo is the number 10.
|
I wanted to use hangups, first time trying it I ran into this same problem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hangups crashes shortly after start with the following traceback:
Commenting out
await self._channel.send.maps(map_list)' in
client.py` prevents the crash (but makes hangups not very useful).Have tested with python-3.5.5 and python-3.6.5.
The text was updated successfully, but these errors were encountered: