Mercurial > public > mercurial-scm > hg-stable
diff mercurial/vfs.py @ 43510:ffd632c224c3
vfs: another bytes-str confusion on thread name
Differential Revision: https://phab.mercurial-scm.org/D7260
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 06 Nov 2019 15:29:28 -0500 |
parents | 8ff1ecfadcd1 |
children | 2dcd4e773193 |
line wrap: on
line diff
--- a/mercurial/vfs.py Wed Nov 06 14:19:05 2019 -0500 +++ b/mercurial/vfs.py Wed Nov 06 15:29:28 2019 -0500 @@ -649,7 +649,7 @@ self._running = True for i in range(threadcount): - t = threading.Thread(target=self._worker, name=b'backgroundcloser') + t = threading.Thread(target=self._worker, name='backgroundcloser') self._threads.append(t) t.start()