diff options
Diffstat (limited to 'plugin_loader/main.py')
| -rw-r--r-- | plugin_loader/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin_loader/main.py b/plugin_loader/main.py index 9ed30760..48f45231 100644 --- a/plugin_loader/main.py +++ b/plugin_loader/main.py @@ -96,7 +96,7 @@ class PluginManager: "id": 1, "method": "Runtime.evaluate", "params": { - "expression": f"resolveMethodCall({call_id}, {r})", + "expression": f"resolveMethodCall('{call_id}', {r})", "userGesture": True } }, receive=False) @@ -141,4 +141,4 @@ class PluginManager: return run_app(self.web_app, host=CONFIG["server_host"], port=CONFIG["server_port"], loop=self.loop, access_log=None) if __name__ == "__main__": - PluginManager().run()
\ No newline at end of file + PluginManager().run() |
