Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVilem Duha <vilem.duha@gmail.com>2019-04-25 23:35:26 +0300
committerVilem Duha <vilem.duha@gmail.com>2019-05-19 16:45:48 +0300
commite16c55a110a5cde3bf5c83a156195b5d71481488 (patch)
treef902eae2914f0dc2759957e862d96e79843982ac /blenderkit/categories.py
parentd2808959bb845ec945aa7fac494db42a9228021b (diff)
BlenderKit: Oauth browser login. No more hassle with API keys for the users. Needs testing.
renamed get_bkit_url to get_api_url task queue is a new simple module to do tasks, more timed tasks should come here instead of being in assetbar as of now. (download, search checks and more)
Diffstat (limited to 'blenderkit/categories.py')
-rw-r--r--blenderkit/categories.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blenderkit/categories.py b/blenderkit/categories.py
index 3c50f2c7..e2dfed3d 100644
--- a/blenderkit/categories.py
+++ b/blenderkit/categories.py
@@ -60,7 +60,7 @@ def copy_categories():
def fetch_categories(API_key):
BLENDERKIT_API_MAIN = "https://www.blenderkit.com/api/v1/"
- url = paths.get_bkit_url() + 'categories/'
+ url = paths.get_api_url() + 'categories/'
headers = utils.get_headers(API_key)