|
@@ -1557,10 +1557,9 @@ class HttpGitClient(GitClient):
|
|
|
|
|
|
def _get_url(self, path):
|
|
|
if not isinstance(path, str):
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- path = path.decode(sys.getfilesystemencoding())
|
|
|
+
|
|
|
+
|
|
|
+ path = path.decode('utf-8')
|
|
|
return urlparse.urljoin(self._base_url, path).rstrip("/") + "/"
|
|
|
|
|
|
def _http_request(self, url, headers=None, data=None,
|