You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 28, 2020. It is now read-only.
$ python3.8 ./app.py
Traceback (most recent call last):
File "/home/usr/pugdebug/pugdebug/server.py", line 43, in run
self.__listen(socket_server)
File "/home/usr/pugdebug/pugdebug/server.py", line 91, in __listen
is_valid = connection.init_connection()
File "/home/usr/pugdebug/pugdebug/server.py", line 185, in init_connection
if idekey != '' and init_message['idekey'] != idekey:
KeyError: 'idekey'
Aborted (core dumped)
Proposed fix: change line #185 of server.py from if idekey != '' and init_message['idekey'] != idekey:
to if (idekey != '') and ('idekey' in init_message) and (init_message['idekey'] != idekey):
I have just started to use pugdebug.
If you allow me to have access, i will make updates directly, or send you patch file(s), or attach changed files to reported issues.
My email is "[email protected]"
What other information do you require?
The text was updated successfully, but these errors were encountered:
Proposed fix: change line #185 of server.py from
if idekey != '' and init_message['idekey'] != idekey:
to
if (idekey != '') and ('idekey' in init_message) and (init_message['idekey'] != idekey):
I have just started to use pugdebug.
If you allow me to have access, i will make updates directly, or send you patch file(s), or attach changed files to reported issues.
My email is "[email protected]"
What other information do you require?
The text was updated successfully, but these errors were encountered: