Преглед на файлове

Merge pull request #955 from nokeechia/patch-1

Added keyword args back to the get_transport_and_path function in clone().
Jelmer Vernooij преди 3 години
родител
ревизия
55c80789a5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      dulwich/porcelain.py

+ 1 - 1
dulwich/porcelain.py

@@ -438,7 +438,7 @@ def clone(
 
     mkdir = not os.path.exists(target)
 
-    (client, path) = get_transport_and_path(source)
+    (client, path) = get_transport_and_path(source, **kwargs)
 
     return client.clone(
         path,