mercurial/wireproto.py
changeset 33220 40861b2254a5
parent 33219 ffb1d0f541f5
child 33223 d227451ee280
equal deleted inserted replaced
33219:ffb1d0f541f5 33220:40861b2254a5
   602     v = ui.configbool('server', 'bundle1.%s' % action, None)
   602     v = ui.configbool('server', 'bundle1.%s' % action, None)
   603     if v is not None:
   603     if v is not None:
   604         return v
   604         return v
   605 
   605 
   606     if gd:
   606     if gd:
   607         v = ui.configbool('server', 'bundle1gd', None)
   607         v = ui.configbool('server', 'bundle1gd')
   608         if v is not None:
   608         if v is not None:
   609             return v
   609             return v
   610 
   610 
   611     return ui.configbool('server', 'bundle1')
   611     return ui.configbool('server', 'bundle1')
   612 
   612