changeset 942:d1546c673c65

ssh: fix breakage with dulwich update dulwich 0.11.x changed the way they pass parameters around, so we reformat that to what hg-git expects.
author Sean Farley <sean@farley.io>
date Mon, 19 Oct 2015 11:41:06 -0700
parents 93d58b79d816
children d278f6d82a06
files hggit/_ssh.py
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/hggit/_ssh.py
+++ b/hggit/_ssh.py
@@ -14,6 +14,11 @@
 
     class _Vendor(SSHVendor):
         def run_command(self, host, command, username=None, port=None):
+            # newer dulwich changes the way they pass command and parameters
+            # around, so we detect that here and reformat it back to what
+            # hg-git expects (e.g. "command 'arg1 arg2'")
+            if len(command) > 1:
+                command = ["%s '%s'" % (command[0], ' '.join(command[1:]))]
             sshcmd = ui.config("ui", "ssh", "ssh")
             args = util.sshargs(sshcmd, host, username, port)
             cmd = '%s %s %s' % (sshcmd, args,