Mercurial > hg
changeset 1332:404484c9628e
Help debugability: print ssh command being used when --verbose.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Fri, 23 Sep 2005 10:32:19 -0700 |
parents | cfae1ed2d61f |
children | 901c645c1943 |
files | mercurial/sshrepo.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Fri Sep 23 10:31:00 2005 -0700 +++ b/mercurial/sshrepo.py Fri Sep 23 10:32:19 2005 -0700 @@ -32,6 +32,7 @@ cmd = '%s %s "%s -R %s serve --stdio"' cmd = cmd % (sshcmd, args, remotecmd, self.path) + ui.note('running %s\n' % cmd) self.pipeo, self.pipei, self.pipee = os.popen3(cmd, 'b') def readerr(self):