diff --git a/leancloud/client.py b/leancloud/client.py index e32f3bc..6530968 100644 --- a/leancloud/client.py +++ b/leancloud/client.py @@ -114,7 +114,7 @@ def new_func(*args, **kwargs): def get_url(part): # try to use the base URL from environ - url = os.environ.get("LC_API_SERVER") or os.environ.get("LEANCLOUD_API_SERVER") + url = os.environ.get("LEANCLOUD_API_SERVER") or os.environ.get("LC_API_SERVER") if url: return "{}/{}{}".format(url, SERVER_VERSION, part)