Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/ui.py @ 23139:e53f6b72a0e4
spelling: fixes from proofreading of spell checker issues
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Thu, 17 Apr 2014 22:47:38 +0200 |
parents | 5ba11ab48fcf |
children | d9d8d2e0f701 |
comparison
equal
deleted
inserted
replaced
23136:6eab50a34fed | 23139:e53f6b72a0e4 |
---|---|
535 if not path and default is not None: | 535 if not path and default is not None: |
536 path = self.config('paths', default) | 536 path = self.config('paths', default) |
537 return path or loc | 537 return path or loc |
538 | 538 |
539 def pushbuffer(self, error=False): | 539 def pushbuffer(self, error=False): |
540 """install a buffer to capture standar output of the ui object | 540 """install a buffer to capture standard output of the ui object |
541 | 541 |
542 If error is True, the error output will be captured too.""" | 542 If error is True, the error output will be captured too.""" |
543 self._buffers.append([]) | 543 self._buffers.append([]) |
544 self._bufferstates.append(error) | 544 self._bufferstates.append(error) |
545 | 545 |