changeset 43462: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 5c9daf7df2b4
children 271af23d01a9
files mercurial/vfs.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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()