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:
Evan Shaw 2010-08-29 23:04:05 -04:00 committed by Russ Cox
parent 3972908ead
commit 9e162aa3be

View file

@ -2494,8 +2494,8 @@ class FakeMercurialUI(object):
self.quiet = True
self.output = ''
def write(self, s):
self.output += s
def write(self, *args, **opts):
self.output += ' '.join(args)
use_hg_shell = False # set to True to shell out to hg always; slower