##// END OF EJS Templates
largefiles: mark headre as bytes regex...
Augie Fackler -
r36330:3ac8b5c1 default
parent child Browse files
Show More
@@ -180,7 +180,7 b' def sshrepocallstream(self, cmd, **args)'
180 args[r'cmds'] = args[r'cmds'].replace('heads ', 'lheads ')
180 args[r'cmds'] = args[r'cmds'].replace('heads ', 'lheads ')
181 return ssholdcallstream(self, cmd, **args)
181 return ssholdcallstream(self, cmd, **args)
182
182
183 headsre = re.compile(r'(^|;)heads\b')
183 headsre = re.compile(br'(^|;)heads\b')
184
184
185 def httprepocallstream(self, cmd, **args):
185 def httprepocallstream(self, cmd, **args):
186 if cmd == 'heads' and self.capable('largefiles'):
186 if cmd == 'heads' and self.capable('largefiles'):
General Comments 0
You need to be logged in to leave comments. Login now