mercurial/bundle2.py
branchstable
changeset 40416 14b6afc6cb28
parent 40399 4ab6e7b4fe8a
child 41768 aaad36b88298
equal deleted inserted replaced
40415:bafa1c4bb7a8 40416:14b6afc6cb28
  1689 
  1689 
  1690     # get the includes and excludes
  1690     # get the includes and excludes
  1691     includepats = kwargs.get(r'includepats')
  1691     includepats = kwargs.get(r'includepats')
  1692     excludepats = kwargs.get(r'excludepats')
  1692     excludepats = kwargs.get(r'excludepats')
  1693 
  1693 
  1694     narrowstream = repo.ui.configbool('experimental.server',
  1694     narrowstream = repo.ui.configbool('experimental',
  1695                                       'stream-narrow-clones')
  1695                                       'server.stream-narrow-clones')
  1696 
  1696 
  1697     if (includepats or excludepats) and not narrowstream:
  1697     if (includepats or excludepats) and not narrowstream:
  1698         raise error.Abort(_('server does not support narrow stream clones'))
  1698         raise error.Abort(_('server does not support narrow stream clones'))
  1699 
  1699 
  1700     includeobsmarkers = False
  1700     includeobsmarkers = False