diff git_handler.py @ 233:57f860801ab0

disable thin packs as they aren't handled correctly
author Abderrahim Kitouni <a.kitouni@gmail.com>
date Sat, 01 Aug 2009 18:33:58 +0100 (2009-08-01)
parents 0ba1aee0467c
children 6f34aee64a3f
line wrap: on
line diff
--- a/git_handler.py
+++ b/git_handler.py
@@ -815,6 +815,6 @@
         for handler, transport in (("git://", TCPGitClient), ("git@", SSHGitClient), ("git+ssh://", SSHGitClient)):
             if uri.startswith(handler):
                 host, path = uri[len(handler):].split("/", 1)
-                return transport(host), '/' + path
+                return transport(host, thin_packs=False), '/' + path
         # if its not git or git+ssh, try a local url..
-        return SubprocessGitClient(), uri
+        return SubprocessGitClient(thin_packs=False), uri