Submitter | phabricator |
---|---|
Date | Nov. 6, 2019, 10:56 p.m. |
Message ID | <differential-rev-PHID-DREV-o4aeouvjcwkn3a6xrfzm-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/42812/ |
State | Superseded |
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()