##// END OF EJS Templates
localrepo: use boolean in opener options...
Gregory Szorc -
r39735:6f26417b default
parent child Browse files
Show More
@@ -818,8 +818,8 b' class localrepository(object):'
818 return caps
818 return caps
819
819
820 def _applyopenerreqs(self):
820 def _applyopenerreqs(self):
821 self.svfs.options = dict((r, 1) for r in self.requirements
821 self.svfs.options = {r: True for r in self.requirements
822 if r in self.openerreqs)
822 if r in self.openerreqs}
823 # experimental config: format.chunkcachesize
823 # experimental config: format.chunkcachesize
824 chunkcachesize = self.ui.configint('format', 'chunkcachesize')
824 chunkcachesize = self.ui.configint('format', 'chunkcachesize')
825 if chunkcachesize is not None:
825 if chunkcachesize is not None:
General Comments 0
You need to be logged in to leave comments. Login now