Mercurial > public > mercurial-scm > hg-stable
diff 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 |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Sat May 09 17:12:39 2009 +0200 +++ b/mercurial/sshrepo.py Sat May 09 17:32:57 2009 +0200 @@ -62,7 +62,7 @@ cmd = util.quotecommand(cmd) ui.note(_('running %s\n') % cmd) - self.pipeo, self.pipei, self.pipee = util.popen3(cmd, 'b') + self.pipeo, self.pipei, self.pipee = util.popen3(cmd) # skip any noise generated by remote shell self.do_cmd("hello")