##// END OF EJS Templates
py3: byteify some `ui.configbool()` parameters...
Matt Harbison -
r44495:b958419b default
parent child Browse files
Show More
@@ -927,7 +927,7 b' def resolverevlogstorevfsoptions(ui, req'
927 if repository.NARROW_REQUIREMENT in requirements:
927 if repository.NARROW_REQUIREMENT in requirements:
928 options[b'enableellipsis'] = True
928 options[b'enableellipsis'] = True
929
929
930 if ui.configbool('experimental', 'rust.index'):
930 if ui.configbool(b'experimental', b'rust.index'):
931 options[b'rust.index'] = True
931 options[b'rust.index'] = True
932
932
933 return options
933 return options
General Comments 0
You need to be logged in to leave comments. Login now