Przeglądaj źródła

Remove unused, add bug reference.

Jelmer Vernooij 15 lat temu
rodzic
commit
4b2cc5b320
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      dulwich/client.py

+ 1 - 2
dulwich/client.py

@@ -21,13 +21,11 @@
 
 __docformat__ = 'restructuredText'
 
-import os
 import select
 import socket
 import subprocess
 
 from dulwich.errors import (
-    ChecksumMismatch,
     SendPackError,
     UpdateRefsError,
     )
@@ -402,5 +400,6 @@ def get_transport_and_path(uri):
         if uri.startswith(handler):
             host, path = uri[len(handler):].split("/", 1)
             return transport(host), "/"+path
+    # FIXME: Parse rsync-like git URLs (user@host:/path), bug 568493
     # if its not git or git+ssh, try a local url..
     return SubprocessGitClient(), uri