vfs: another bytes-str confusion on thread name
authorAugie Fackler <augie@google.com>
Wed, 06 Nov 2019 15:29:28 -0500
changeset 43462 ffd632c224c3
parent 43461 5c9daf7df2b4
child 43463 271af23d01a9
vfs: another bytes-str confusion on thread name Differential Revision: https://phab.mercurial-scm.org/D7260
mercurial/vfs.py
--- 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()