mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-12-17 01:24:06 -05:00
Invalid syntax in WebsockReceiverThread._javascript_dialog_open
Fix `)` position
This commit is contained in:
parent
d6c707d941
commit
646faa8ab0
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ class WebsockReceiverThread(threading.Thread):
|
||||||
self.websock.send(
|
self.websock.send(
|
||||||
json.dumps(dict(
|
json.dumps(dict(
|
||||||
id=0, method='Page.handleJavaScriptDialog',
|
id=0, method='Page.handleJavaScriptDialog',
|
||||||
params={'accept': accept})), separators=',:')
|
params={'accept': accept}), separators=',:'))
|
||||||
|
|
||||||
def _handle_message(self, websock, json_message):
|
def _handle_message(self, websock, json_message):
|
||||||
message = json.loads(json_message)
|
message = json.loads(json_message)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue