Commit 9e162aa3 authored by Evan Shaw's avatar Evan Shaw Committed by Russ Cox

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
parent 3972908e
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment