Submitter | phabricator |
---|---|
Date | Nov. 7, 2019, 8:31 a.m. |
Message ID | <1d63fb481ce2577a57265c50a3c8225c@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/42859/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/statprof.py b/mercurial/statprof.py --- a/mercurial/statprof.py +++ b/mercurial/statprof.py @@ -352,7 +352,7 @@ frame = inspect.currentframe() tid = [k for k, f in sys._current_frames().items() if f == frame][0] state.thread = threading.Thread( - target=samplerthread, args=(tid,), name=b"samplerthread" + target=samplerthread, args=(tid,), name="samplerthread" ) state.thread.start()