changeset 38807 | 98df52d5042c |
parent 38792 | afb442f58cbf |
child 38808 | d99083996398 |
--- a/mercurial/exchange.py Sat Jul 28 14:52:46 2018 -0700 +++ b/mercurial/exchange.py Sat Jul 28 17:33:20 2018 -0700 @@ -1872,9 +1872,11 @@ new_args = {} new_args.update(kwargs) - new_args['includepats'] = req_includes + new_args[r'narrow'] = True + new_args[r'includepats'] = req_includes if req_excludes: - new_args['excludepats'] = req_excludes + new_args[r'excludepats'] = req_excludes + return new_args def _computeellipsis(repo, common, heads, known, match, depth=None):