浏览代码

Add note about encoding.

Jelmer Vernooij 8 年之前
父节点
当前提交
57fbe01044
共有 1 个文件被更改,包括 3 次插入0 次删除
  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("/") + "/"