mercurial/commandserver.py
changeset 40357 efbf7de09d2a
parent 39818 24e493ec2229
child 40358 afbfcc4e3473
--- a/mercurial/commandserver.py	Tue Oct 16 07:52:56 2018 +0200
+++ b/mercurial/commandserver.py	Tue Oct 16 07:57:05 2018 +0200
@@ -66,7 +66,7 @@
         self.out.flush()
 
     def __getattr__(self, attr):
-        if attr in ('isatty', 'fileno', 'tell', 'seek'):
+        if attr in (r'isatty', r'fileno', r'tell', r'seek'):
             raise AttributeError(attr)
         return getattr(self.out, attr)
 
@@ -150,7 +150,7 @@
         return l
 
     def __getattr__(self, attr):
-        if attr in ('isatty', 'fileno', 'tell', 'seek'):
+        if attr in (r'isatty', r'fileno', r'tell', r'seek'):
             raise AttributeError(attr)
         return getattr(self.in_, attr)