Remove spurious single quote in profiler.py

Before:
```
127.0.0.1 - - [17/Jun/2022 16:08:18] "GET /perfetto_trace.json.gz' HTTP/1.1" 404 -
```
After:
```
127.0.0.1 - - [17/Jun/2022 16:35:54] "GET /perfetto_trace.json.gz HTTP/1.1" 200 -
```
This commit is contained in:
Ed Schmerling 2022-06-17 16:39:21 -07:00 committed by GitHub
parent cc9ffbcd0f
commit f2a85f36f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,7 +163,7 @@ def _host_perfetto_trace_file(log_dir):
os.chdir(directory)
socketserver.TCPServer.allow_reuse_address = True
with socketserver.TCPServer(('127.0.0.1', port), _PerfettoServer) as httpd:
url = f"https://ui.perfetto.dev/#!/?url=http://127.0.0.1:{port}/{filename}'"
url = f"https://ui.perfetto.dev/#!/?url=http://127.0.0.1:{port}/{filename}"
print(f"Open URL in browser: {url}")
# Once ui.perfetto.dev acquires trace.json from this server we can close