Browse Source

Apply lib2to3.fixes.fix_apply

Gary van der Merwe 11 years ago
parent
commit
044a7c1b69
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dulwich/client.py

+ 1 - 1
dulwich/client.py

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