# HG changeset patch # User Drew Gottlieb # Date 1429730179 25200 # Node ID 71a738a6a1c1409f3e777ce8e36a987ab5c23eaf # Parent 658bd4dc7a73ddd28af58335c3663f48a685466e localrepo: rename requirements parameter in stream_in() To avoid confusion from overloading of the variable name "requirements", the requirements is renamed to remotereqs for localrepo's stream_in() function. diff -r 658bd4dc7a73 -r 71a738a6a1c1 mercurial/localrepo.py --- a/mercurial/localrepo.py Wed Apr 22 12:59:12 2015 -0700 +++ b/mercurial/localrepo.py Wed Apr 22 12:16:19 2015 -0700 @@ -1752,7 +1752,7 @@ """ return util.hooks() - def stream_in(self, remote, requirements): + def stream_in(self, remote, remotereqs): lock = self.lock() try: # Save remote branchmap. We will use it later @@ -1825,9 +1825,9 @@ util.bytecount(total_bytes / elapsed))) # new requirements = old non-format requirements + - # new format-related + # new format-related remote requirements # requirements from the streamed-in repository - self.requirements = requirements | ( + self.requirements = remotereqs | ( self.requirements - self.supportedformats) self._applyopenerreqs() self._writerequirements()