mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-12-15 08:38:52 -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(
|
||||
json.dumps(dict(
|
||||
id=0, method='Page.handleJavaScriptDialog',
|
||||
params={'accept': accept})), separators=',:')
|
||||
params={'accept': accept}), separators=',:'))
|
||||
|
||||
def _handle_message(self, websock, json_message):
|
||||
message = json.loads(json_message)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue