mirror of
https://github.com/golang/go
synced 2024-11-21 14:04:41 -07:00
codereview: Fix uploading for Mercurial 1.6.3
See: http://selenic.com/repo/hg/rev/32b213b9b22c http://selenic.com/repo/hg/rev/2096496b40ec R=rsc, adg CC=golang-dev https://golang.org/cl/2072041
This commit is contained in:
parent
3972908ead
commit
9e162aa3be
@ -2494,8 +2494,8 @@ class FakeMercurialUI(object):
|
|||||||
self.quiet = True
|
self.quiet = True
|
||||||
self.output = ''
|
self.output = ''
|
||||||
|
|
||||||
def write(self, s):
|
def write(self, *args, **opts):
|
||||||
self.output += s
|
self.output += ' '.join(args)
|
||||||
|
|
||||||
use_hg_shell = False # set to True to shell out to hg always; slower
|
use_hg_shell = False # set to True to shell out to hg always; slower
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user