Ver Fonte

Add note about encoding.

Jelmer Vernooij há 8 anos atrás
pai
commit
57fbe01044
1 ficheiros alterados com 3 adições e 0 exclusões
  1. 3 0
      dulwich/client.py

+ 3 - 0
dulwich/client.py

@@ -1100,6 +1100,9 @@ class HttpGitClient(GitClient):
 
     def _get_url(self, path):
         if not isinstance(path, str):
+            # TODO(jelmer): this is unrelated to the local filesystem;
+            # This is not necessarily the right encoding to decode the path
+            # with.
             path = path.decode(sys.getfilesystemencoding())
         return urlparse.urljoin(self._base_url, path).rstrip("/") + "/"