Mercurial > hg-stable
changeset 39772:4a8bfec90ae6
bundle2: grab kwarg using sysstr
# skip-blame just an r prefix on a string
Differential Revision: https://phab.mercurial-scm.org/D4691
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 21 Sep 2018 11:44:08 -0400 |
parents | e65697cce065 |
children | 97f2992c26f6 |
files | mercurial/bundle2.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/bundle2.py Fri Sep 21 11:15:55 2018 -0400 +++ b/mercurial/bundle2.py Fri Sep 21 11:44:08 2018 -0400 @@ -1672,7 +1672,7 @@ return params def addpartbundlestream2(bundler, repo, **kwargs): - if not kwargs.get('stream', False): + if not kwargs.get(r'stream', False): return if not streamclone.allowservergeneration(repo):