Mercurial > public > mercurial-scm > hg
comparison mercurial/hg.py @ 30962:11c253997b0e
destutil: drop now-unused "check" parameter from destupdate()
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Mon, 13 Feb 2017 11:32:09 -0800 |
parents | 940c05b25b07 |
children | 7beb3ec34443 |
comparison
equal
deleted
inserted
replaced
30961:330fbd515512 | 30962:11c253997b0e |
---|---|
730 """ | 730 """ |
731 with repo.wlock(): | 731 with repo.wlock(): |
732 movemarkfrom = None | 732 movemarkfrom = None |
733 warndest = False | 733 warndest = False |
734 if checkout is None: | 734 if checkout is None: |
735 updata = destutil.destupdate(repo, clean=clean, check=check) | 735 updata = destutil.destupdate(repo, clean=clean) |
736 checkout, movemarkfrom, brev = updata | 736 checkout, movemarkfrom, brev = updata |
737 warndest = True | 737 warndest = True |
738 | 738 |
739 if clean: | 739 if clean: |
740 ret = _clean(repo, checkout) | 740 ret = _clean(repo, checkout) |