瀏覽代碼

Fix handling of commands with arguments in paramiko SSH client.

Jelmer Vernooij 9 年之前
父節點
當前提交
f700b72887
共有 2 個文件被更改,包括 4 次插入1 次删除
  1. 3 0
      NEWS
  2. 1 1
      dulwich/client.py

+ 3 - 0
NEWS

@@ -26,6 +26,9 @@
   * Allow arguments in local client binary path overrides.
     (Jelmer Vernooij)
 
+  * Fix handling of commands with arguments in paramiko SSH
+    client. (Andreas Klöckner, Jelmer Vernooij, #363)
+
 0.10.1  2015-03-25
 
  BUG FIXES

+ 1 - 1
dulwich/client.py

@@ -956,7 +956,7 @@ else:
             channel = client.get_transport().open_session()
 
             # Run commands
-            channel.exec_command(*command)
+            channel.exec_command(subprocess.list2cmdline(command))
 
             return ParamikoWrapper(
                 client, channel, progress_stderr=progress_stderr)