Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

client: In get_transport_and_path, pass kwargs on to HttpGitClient.

Changeset a3130fa7fe23

Parent 35d9475598be

committed by Jelmer Vernooij

authored by Jelmer Vernooij

Changes to 2 files · Browse files at a3130fa7fe23 Showing diff from parent 35d9475598be Diff from another changeset...

Change 1 of 1 Show Entire File NEWS Stacked
 
34
35
36
 
 
 
37
38
39
 
34
35
36
37
38
39
40
41
42
@@ -34,6 +34,9 @@
  (D-Key, Jelmer Vernooij, issue #69)     * Support ``MemoryRepo.get_config``. (Jelmer Vernooij) + + * In ``get_transport_and_path``, pass extra keyword arguments on to + HttpGitClient. (Jelmer Vernooij)    0.8.5 2012-03-29  
Change 1 of 1 Show Entire File dulwich/​client.py Stacked
 
779
780
781
782
 
783
784
785
 
779
780
781
 
782
783
784
785
@@ -779,7 +779,7 @@
  return SSHGitClient(parsed.hostname, port=parsed.port,   username=parsed.username, **kwargs), parsed.path   elif parsed.scheme in ('http', 'https'): - return HttpGitClient(urlparse.urlunparse(parsed)), parsed.path + return HttpGitClient(urlparse.urlunparse(parsed), **kwargs), parsed.path     if parsed.scheme and not parsed.netloc:   # SSH with no user@, zero or one leading slash.