Pārlūkot izejas kodu

Remove unused, add bug reference.

Jelmer Vernooij 15 gadi atpakaļ
vecāks
revīzija
4b2cc5b320
1 mainītis faili ar 1 papildinājumiem un 2 dzēšanām
  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