##// END OF EJS Templates
Help debugability: print ssh command being used when --verbose.
Bryan O'Sullivan -
r1332:404484c9 default
parent child Browse files
Show More
@@ -32,6 +32,7 b' class sshrepository(remoterepository):'
32 cmd = '%s %s "%s -R %s serve --stdio"'
32 cmd = '%s %s "%s -R %s serve --stdio"'
33 cmd = cmd % (sshcmd, args, remotecmd, self.path)
33 cmd = cmd % (sshcmd, args, remotecmd, self.path)
34
34
35 ui.note('running %s\n' % cmd)
35 self.pipeo, self.pipei, self.pipee = os.popen3(cmd, 'b')
36 self.pipeo, self.pipei, self.pipee = os.popen3(cmd, 'b')
36
37
37 def readerr(self):
38 def readerr(self):
General Comments 0
You need to be logged in to leave comments. Login now