mercurial/vfs.py
changeset 43466 2dcd4e773193
parent 43462 ffd632c224c3
child 43467 b16912f8c07c
--- a/mercurial/vfs.py	Wed Nov 06 15:17:38 2019 -0500
+++ b/mercurial/vfs.py	Wed Nov 06 15:19:56 2019 -0500
@@ -52,7 +52,7 @@
 
     def __init__(self, *args, **kwargs):
         '''Prevent instantiation; don't call this from subclasses.'''
-        raise NotImplementedError(b'attempted instantiating ' + str(type(self)))
+        raise NotImplementedError('attempted instantiating ' + str(type(self)))
 
     def _auditpath(self, path, mode):
         raise NotImplementedError
@@ -589,10 +589,10 @@
         return self
 
     def __exit__(self, exc_type, exc_value, exc_tb):
-        raise NotImplementedError(b'attempted instantiating ' + str(type(self)))
+        raise NotImplementedError('attempted instantiating ' + str(type(self)))
 
     def close(self):
-        raise NotImplementedError(b'attempted instantiating ' + str(type(self)))
+        raise NotImplementedError('attempted instantiating ' + str(type(self)))
 
 
 class delayclosedfile(closewrapbase):