Kaydet (Commit) 3f98f0f8 authored tarafından Your Name's avatar Your Name

locale url fetch bug fixed

üst 39149d7f
......@@ -451,5 +451,7 @@ def fetch(packages=None, path=os.path.curdir):
if url.startswith("git://") or url.endswith(".git"):
branch="master"
fetch_git(url.replace("git://","https://"),path,branch)
else:
elif "://" in url:
fetch_url(url, path, ctx.ui.Progress)
else:
fetch_from_locale(url,path)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment