Mercurial > public > mercurial-scm > hg
comparison mercurial/sshrepo.py @ 8339:f55869abb5c3
util: remove ignored mode argument in popen[23]
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 09 May 2009 17:32:57 +0200 |
parents | b87a50b7125c |
children | f8ff65a83169 |
comparison
equal
deleted
inserted
replaced
8338:44e9771746b9 | 8339:f55869abb5c3 |
---|---|
60 cmd = '%s %s "%s -R %s serve --stdio"' | 60 cmd = '%s %s "%s -R %s serve --stdio"' |
61 cmd = cmd % (sshcmd, args, remotecmd, self.path) | 61 cmd = cmd % (sshcmd, args, remotecmd, self.path) |
62 | 62 |
63 cmd = util.quotecommand(cmd) | 63 cmd = util.quotecommand(cmd) |
64 ui.note(_('running %s\n') % cmd) | 64 ui.note(_('running %s\n') % cmd) |
65 self.pipeo, self.pipei, self.pipee = util.popen3(cmd, 'b') | 65 self.pipeo, self.pipei, self.pipee = util.popen3(cmd) |
66 | 66 |
67 # skip any noise generated by remote shell | 67 # skip any noise generated by remote shell |
68 self.do_cmd("hello") | 68 self.do_cmd("hello") |
69 r = self.do_cmd("between", pairs=("%s-%s" % ("0"*40, "0"*40))) | 69 r = self.do_cmd("between", pairs=("%s-%s" % ("0"*40, "0"*40))) |
70 lines = ["", "dummy"] | 70 lines = ["", "dummy"] |